bin/setup-man@e033f9ce0d8c
bin/setup-man
Thu, 28 Oct 2021 21:46:26 -0500
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Thu, 28 Oct 2021 21:46:26 -0500
- changeset 953
- e033f9ce0d8c
- parent 756
-
8bc91181db9d
- permissions
- -rwxr-xr-x
Simplify ag/grep setup
#!/bin/sh
set -eu
cd $(hg root)
SOURCES="${@:-$(hg stat -Aqn -I 'bin/*')}"
MAN1=".man/man1"
mkdir -p $MAN1 || true
for SRC in $(grep -El '^=(head|cut)' $SOURCES); do
DST="${MAN1}/$(basename $SRC).1"
if [ ! -f $DST ] || [ "$SRC" -nt "$SRC" ]; then
pod2man -v --errors=stderr "$SRC" "$DST"
fi
done