aboutsummaryrefslogtreecommitdiff
path: root/doc/man/produce_html.sh.in
blob: e9581622f06b582bd40a0b41cfa9608022fc31ff (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if command -v mandoc >/dev/null 2>&1;
then
    for f in `find . -name \*\.[1-9]`;
    do
        mandoc -T html $f > $f.html;
    done
fi