Skip to content

Instantly share code, notes, and snippets.

@jabenninghoff
Created August 31, 2020 04:13
Show Gist options
  • Save jabenninghoff/b20b97bdf625c492611affe113427763 to your computer and use it in GitHub Desktop.
Save jabenninghoff/b20b97bdf625c492611affe113427763 to your computer and use it in GitHub Desktop.
Open a man page as a PDF on macOS

macOS: open a man page as a PDF

From the command line:

man -t <manpage> | open -f -a Preview.app

-t outputs as postscript, which Preview automatically converts to PDF.

Thanks to SlaunchaMan's reddit post

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