/ Published in: Other
I did write this snippet, I found it somewhere on the internet (I think I found it in a .bash_profile file in [dotfiles.org](http://www.dotfiles.org/)
Paste this code at the end of your .bash_profile file and the use it instead of man if you want to read some manpages in Preview.app (and eventually print the manpages or save them as a PDF file)
Paste this code at the end of your .bash_profile file and the use it instead of man if you want to read some manpages in Preview.app (and eventually print the manpages or save them as a PDF file)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# Open a manpage in Preview, which can be saved to PDF pman() { man -t "${1}" | open -f -a /Applications/Preview.app }