How can I 'cat' a man page like I would 'cat' a file to get just a dump of the contents?
|
First of all, the man files are usually just gziped text files somewhere in your file system. Since your milage will vary finding them and you probably wanted the processed and formatted version that man gives you instead of the source, you can just dump them with the
It's also worth nothing that
or to dump TO a file:
|
||||
|
|
|
Just use the |
|||
|
|
|
Man pages are usually
You might need to use gzip to uncompress the man page files first, and you'll still have plenty of formatting information in the output. |
|||
|
|
|
To get an ASCII man page file, without the annoying backspace/underscore attempts at underlining, and weird sequences to do bolding:
|
|||
|
|