Operating System - HP-UX
1835773 Members
3945 Online
110085 Solutions
New Discussion

Re: print MAN information

 
Sylvie Vezina
Occasional Advisor

print MAN information

We would like print listing contained in man. But if we executed for e.g.: man awk >>output.log and we print it, we received many garbage in the print out!
Could you tell me the way to print it?
Thank you!
The best day is today
2 REPLIES 2
James R. Ferguson
Acclaimed Contributor

Re: print MAN information

HI:

This will work:

# man awk|col -b > /tmp/awk.man

Regards!

...JRF...
Pete Randall
Outstanding Contributor

Re: print MAN information

man awk | col -b |expand > awk.man

lp awk.man


Pete


Pete