FOERBICO/sb/scripts/add-metadata-author-and-date.sh
Ludger Sicking f8eda6b308
All checks were successful
ci/woodpecker/push/build_and_copy_blog Pipeline was successful
kleine Änderungen:
Autor:innen und Datum ergänzt
Lesezeit entfernt
2024-12-03 16:09:15 +01:00

17 lines
416 B
Bash
Executable file

#!/bin/bash
set -e
# script im root dir ausführen
working_directory=$(basename $(pwd))
if [ "$working_directory" != "FOERBICO" ]; then
echo "not in root dir 'FOERBICO'"
exit 1
fi
find sb/content/posts -type f -name 'index.md' | while read FILE ;
do
awk -f sb/scripts/move-author.awk $FILE > $FILE.out
awk -f sb/scripts/move-date.awk $FILE.out > $FILE.out2
mv $FILE.out2 $FILE
rm $FILE.out
done