48 lines
784 B
Bash
Executable file
48 lines
784 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
timestamp="$(date '+%s')"
|
|
title="$(date '+%Y-%m-%d %H:%M' --date="@$timestamp")"
|
|
year="$(date '+%Y')"
|
|
month="$(date '+%m')"
|
|
|
|
archive=./doc/log/archive
|
|
|
|
for dir in "$archive" "$archive/$year" "$archive/$year/$month"; do
|
|
if [ ! -d "$dir" ]; then
|
|
mkdir -- "$dir"
|
|
name="$(basename -- "$dir")"
|
|
if [ "$name" = archive ]; then
|
|
name=Archive
|
|
fi
|
|
<<-EOF cat - >"$dir/index.rst"
|
|
# $name
|
|
|
|
\`\`\`{toctree}
|
|
---
|
|
$(printf '\t')glob
|
|
$(printf '\t')maxdepth: 1
|
|
---
|
|
|
|
$(printf '\t')*/index
|
|
\`\`\`
|
|
EOF
|
|
fi
|
|
done
|
|
|
|
mkdir -- "$archive/$year/$month/$timestamp"
|
|
|
|
|
|
<<-EOF cat - >"$archive/$year/$month/$timestamp/index.md"
|
|
# $title
|
|
*Written $title*
|
|
|
|
\`\`\`{contents}
|
|
\`\`\`
|
|
|
|
## TODO
|
|
EOF
|
|
|
|
printf '%s\n' "$archive/$year/$month/$timestamp"
|
|
exit 0
|