Files
neocities/compile.sh
2025-04-25 22:57:45 +02:00

14 lines
315 B
Bash
Executable File

#!/bin/bash
t='['
for entry in notes/*
do
filename=$(basename "$entry" .md)
timestamp=`git log --format=%ad --date=format:'%Y-%m-%d' -- $entry`
dest="public/posts/$timestamp"
dest+="_$filename"
dest+=".html"
t+="{\"source\":\"$entry\",\"dest\":\"$dest\",\"time\":\"$timestamp\"},"
done
echo "${t%?}]"