mirror of
https://github.com/jbowdre/capsule.git
synced 2024-11-09 16:32:18 +00:00
9 lines
221 B
Bash
9 lines
221 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
|
||
|
INFEED="public/gemlog/atom.xml"
|
||
|
OUTFEED="public/gemlog/atom-https.xml"
|
||
|
|
||
|
# read INFILE, replace gemini:// with https:// and write to OUTFILE
|
||
|
sed 's/gemini:\/\//https:\/\//g' $INFEED > $OUTFEED
|