From 7b00e930daafde8bdebd7d92a850c94ddc8ef955 Mon Sep 17 00:00:00 2001 From: sejo Date: Wed, 19 May 2021 20:36:07 -0500 Subject: =?UTF-8?q?conversi=C3=B3n=20gem2gem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- generasitio.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'generasitio.sh') diff --git a/generasitio.sh b/generasitio.sh index 2adab59..cbd8b5a 100755 --- a/generasitio.sh +++ b/generasitio.sh @@ -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 -- cgit v1.2.3