Files
neocities/compile.sh
2025-04-25 22:41:07 +02:00

11 lines
227 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`
t+="{\"dest\"=\"$filename\",\"time\"=\"$timestamp\"},"
done
echo "${t%?}]"