Permalink
Fetching contributors…
Cannot retrieve contributors at this time
executable file 14 lines (10 sloc) 306 Bytes
#! /bin/sh
DIR=$(dirname "$0")
# clean before build
rm -rf "$DIR/html/*.html"
for name in $(ls -1 "$DIR/man/man3/" | sed 's/.3monocypher//')
do
mandoc \
-Oman=%N.html,style=style.css \
-Thtml "$DIR/man/man3/$name.3monocypher" > "$DIR/html/$name.html"
done