#!/bin/sh cat > man.html < Galley man pages Man Pages for the Galley Parallel File System EOF for i in `/bin/ls /usr/local/man/man*/gfs_* /usr/local/man/man1/iop.1` do call=`echo $i | sed -e 's/.*\///;s/\.2//'` echo $call echo " " $call "" >> man.html nroff -man $i | rman -fhtml -l "$call(2)" > $call.html done cat >> man.html < These pages automatically generated at `date`. The actual translation from nroff to HTML is done by RosettaMan v2.5a4 . The translation is not perfect, but it beats trying to keep the nroff and HTML consistent by hand. Nils Nieuwejaar EOF
The actual translation from nroff to HTML is done by RosettaMan v2.5a4 . The translation is not perfect, but it beats trying to keep the nroff and HTML consistent by hand.
Nils Nieuwejaar
EOF