mirror of
https://github.com/IanDarwin/OpenLookCDROM.git
synced 2026-01-13 15:27:54 +00:00
17 lines
323 B
Plaintext
Executable File
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
|