17 lines
323 B
Plaintext
Executable File

# Make the troff, postscript, etc. man pages
for p in `find man? -type f -print `
do
# first the nroff stage
echo Nroffing $p
nroff -man $p > `echo $p|sed 's/man/cat/'`
# then the troff stage
echo Troffing $p
groff -man -Tps $p > `echo $p|sed 's/man/ps/'`
# then distill to PDF
# must be done on darian...
done