conversión gem2gem

This commit is contained in:
sejo 2021-05-19 20:36:07 -05:00
parent 9b772d64cc
commit 7b00e930da
1 changed files with 8 additions and 4 deletions

View File

@ -15,11 +15,15 @@ for f in $(find src/ -iname *.gmi)
do
path=${f#src/} # quita el prefijo de "src/"
htmlpath="web/${path%gmi}html" # agrega "web/" y cambia el sufijo
if [ $f -nt $htmlpath ] # si archivo gmi es "newer than" el html
then
gempath="gem/${path}" # agrega "gem/"
# if [ $f -nt $htmlpath ] # si archivo gmi es "newer than" el html
# then
echo "${f} -> ${htmlpath}"
mkdir -p $(dirname $htmlpath) # crea el directorio si no existe
echo "${f} -> ${gempath}"
# mkdir -p $(dirname $htmlpath) # crea el directorio si no existe
# mkdir -p $(dirname $htmlpath) # crea el directorio si no existe
# haz la conversión
awk -f gemtext2html.awk $f > $htmlpath
fi
awk -f gem2gem.awk $f > $gempath
# fi
done