Blame


1 c2f72a2a 2019-08-13 stsp #!/bin/sh
2 c2f72a2a 2019-08-13 stsp
3 cdde3ef7 2024-02-08 stsp CONVERT="mandoc -T html -O style=mandoc.css"
4 08cfc1a8 2021-11-21 stsp
5 1a21a6dd 2021-09-12 stsp for f in got.1 got-worktree.5 git-repository.5 got.conf.5; do
6 08cfc1a8 2021-11-21 stsp $CONVERT $HOME/src/got/got/$f > ./${f}.html
7 c2f72a2a 2019-08-13 stsp done
8 08cfc1a8 2021-11-21 stsp $CONVERT $HOME/src/got/gotadmin/gotadmin.1 > ./gotadmin.1.html
9 08cfc1a8 2021-11-21 stsp $CONVERT $HOME/src/got/tog/tog.1 > ./tog.1.html
10 63657f42 2022-09-07 stsp for f in gotwebd.8 gotwebd.conf.5; do
11 63657f42 2022-09-07 stsp $CONVERT $HOME/src/got/gotwebd/$f > ./${f}.html
12 63657f42 2022-09-07 stsp done
13 742bb3a1 2022-10-24 stsp for f in gotd.8 gotd.conf.5; do
14 742bb3a1 2022-10-24 stsp $CONVERT $HOME/src/got/gotd/$f > ./${f}.html
15 742bb3a1 2022-10-24 stsp done
16 742bb3a1 2022-10-24 stsp $CONVERT $HOME/src/got/gotsh/gotsh.1 > ./gotsh.1.html
17 fd9580e1 2022-11-03 stsp $CONVERT $HOME/src/got/gotctl/gotctl.8 > ./gotctl.8.html
18 d9cf1ef0 2023-04-20 stsp $CONVERT $HOME/src/got/gitwrapper/gitwrapper.1 > ./gitwrapper.1.html
19 c2f72a2a 2019-08-13 stsp
20 40547f9e 2020-09-17 stsp got st