Blob


1 #!/bin/sh
3 CONVERT="mandoc -T html -O style=mandoc.css"
5 for f in got.1 got-worktree.5 git-repository.5 got.conf.5; do
6 $CONVERT $HOME/src/got/got/$f > ./${f}.html
7 done
8 $CONVERT $HOME/src/got/gotadmin/gotadmin.1 > ./gotadmin.1.html
9 $CONVERT $HOME/src/got/tog/tog.1 > ./tog.1.html
10 for f in gotwebd.8 gotwebd.conf.5; do
11 $CONVERT $HOME/src/got/gotwebd/$f > ./${f}.html
12 done
13 for f in gotd.8 gotd.conf.5; do
14 $CONVERT $HOME/src/got/gotd/$f > ./${f}.html
15 done
16 $CONVERT $HOME/src/got/gotsh/gotsh.1 > ./gotsh.1.html
17 $CONVERT $HOME/src/got/gotctl/gotctl.8 > ./gotctl.8.html
18 $CONVERT $HOME/src/got/gitwrapper/gitwrapper.1 > ./gitwrapper.1.html
20 got st