Hylafax Mailing List Archives
|
[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
Re: [hylafax-users] printable howto
> -----Original Message-----
> From: hylafax-users-bounce@hylafax.org
> [mailto:hylafax-users-bounce@hylafax.org]On Behalf Of Konrad Mader
> Sent: Thursday, March 14, 2002 4:05 AM
> To: 'hylafax-users@hylafax.org'
> Subject: [hylafax-users] printable howto
>
>
> Hi,
>
> is there a printable howto (in postscript)
>
> Regards
> Konrad Mader
>
>
> ____________________ HylaFAX(tm) Users Mailing List
> _______________________
> To unsub: mail -s unsubscribe hylafax-users-request@hylafax.org
> < /dev/null
I don't know about the HOW-TO, but someone, I believe it was Lee, posted a
script which converted all the man pages into a handy-dandy postscript
file. This may be of interest to you.
# This is a script which can be used to generate a contiguous
# Postscript-manual for HylaFAX containing all of the man pages
# The layout of the HylaFAX man pages makes this a non-trivial
# matter.
#
# This script requires HylaFAX and mpage to be installed.
MANPAGES="choptest \
cid \
config \
cqtest \
destctrls \
dialrules \
dialtest \
doneq \
fax2ps \
faxabort \
faxaddmodem \
faxadduser \
faxalter \
faxanswer \
faxconfig \
faxcover \
faxcron \
faxdeluser \
faxgetty \
faxinfo \
faxmail \
faxmodem \
faxq \
faxqclean \
faxquit \
faxrcvd \
faxrm \
faxsend \
faxsetup \
faxstat \
faxstate \
faxwatch \
hfaxd \
hosts.hfaxd \
hylafax-client \
hylafax-server \
info \
log \
mkcover \
notify \
pagermap \
pagesend \
pagesizes \
pdf2fax \
pollrcvd \
ps2fax \
recvq \
recvstats \
sendfax \
sendpage \
sendq \
sgi2fax \
shutdown \
status \
tagtest \
textfmt \
tiff2fax \
tiffcheck \
tsi \
tsitest \
typerules \
wedged \
xferfaxlog \
xferfaxstats"
rm -rf manualmaker.tmp
mkdir manualmaker.tmp
for manpage in $MANPAGES; do
man -t $manpage > manualmaker.tmp/$manpage.ps
done
if [ -n "$1" ]; then
mpage -o -P- -1 -c manualmaker.tmp/*.ps > $1
else
mpage -o -P- -1 -c manualmaker.tmp/*.ps -
fi
rm -rf manualmaker.tmp
____________________ HylaFAX(tm) Users Mailing List _______________________
To unsub: mail -s unsubscribe hylafax-users-request@hylafax.org < /dev/null