Add list plugin to contrib

This commit is contained in:
James Mills 2023-03-30 22:53:03 +10:00
parent 71e45638de
commit 3c1f7fdf56
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
1 changed files with 27 additions and 0 deletions

27
contrib/plugins/list Executable file
View File

@ -0,0 +1,27 @@
#!/bin/sh
if [ ! $# = 1 ]; then
printf >&2 "Usage: %s <path> [ext]\n" "$(basename "$0")"
exit 0
fi
p="$1"
t="${2:-md}"
if [ ! -d "$p" ]; then
printf >&2 "error: path %s not found\n" "$p"
exit 1
fi
find "$p" -type f -name "*.$t" | while read -r file; do
name="${file#"$p"}"
name="${name#"/"}"
name="${name%.*}"
title="$(zs vars "$file" title)"
if [ -z "$title" ]; then
title="$name"
fi
echo "- [$title](${p}/${name}.html)"
done