Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Created July 3, 2020 15:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ahmadawais/2028433732418235da5e2d3a29530db7 to your computer and use it in GitHub Desktop.
Save ahmadawais/2028433732418235da5e2d3a29530db7 to your computer and use it in GitHub Desktop.
manpdf opens man pages as PDF
# Open man page as PDF.
# USAGE: manpdf cat
function manpdf() {
man -t "${1}" | open -f -a /Applications/Preview.app/
}
@jswright61
Copy link

Add /System before /Applications in Big Sur
man -t "${1}" | open -f -a /System/Applications/Preview.app/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment