blob: 605bbb0baa802b52dd4abd6bcec186a56a6679df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env bash
LISTS=()
while read -r -d $'\0'; do
LISTS+=("$REPLY")
done < <(find lists -maxdepth 1 -mindepth 1 -type d -not -name '.*' -print0 | sort -z)
for x in "${LISTS[@]}"; do
printf "%s.html\0" "$x"
done | xargs -r -0 redo-ifchange
cat <<EOF
% Index
This is a blog.
It contains things.
Send things to <blog@dirty-haskell.org> if you so choose.
EOF
for x in "${LISTS[@]}"; do
printf "* [%s](%s)\n" "$(<$x/title)" "$x.html"
while read -r -d $'\n'; do
printf " %s\n" "$REPLY"
done < "$x/preview"
done
|