alchi/journal/generate-index-files.sh
2022-09-28 08:12:27 +02:00

18 lines
248 B
Bash
Executable file

#! /usr/bin/env bash
for month in 2022-08 2022-09
do
(
printf '# %s\n\n' "$month"
find . -maxdepth 1 -name "$month-*.webp" -printf '%P\n' |
sort |
while read f
do
printf '## %s\n\n' "$f"
printf '![](%s)\n\n' "$f"
done
) | tee $month.md
done