]> andersk Git - gssapi-openssh.git/blobdiff - openssh/make_html
Script to turn plain man pages into html now that we want to make html man
[gssapi-openssh.git] / openssh / make_html
diff --git a/openssh/make_html b/openssh/make_html
new file mode 100755 (executable)
index 0000000..a685a89
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+# expect man2html 3.x from <http://www.oac.uci.edu/indiv/ehood/man2html.html>
+for manpage in `ls *.[0-9]`; do
+  nroff -man $manpage | man2html -botm 0 -topm 0 > $manpage.html
+done
This page took 0.039406 seconds and 4 git commands to generate.