gnunet-gns-proxy-setup-ca: use shlib
[oweals/gnunet.git] / doc / man / produce_html.sh
1 #!/bin/sh
2
3 existence()
4 {
5     command -v "$1" >/dev/null 2>&1
6 }
7
8 if existence mandoc;
9 then
10     for f in `find . -name \*\.[1-9]`;
11     do
12         mandoc -T html $f > $f.html;
13     done
14 fi