Skip to content

Instantly share code, notes, and snippets.

@cccaldas
Created December 11, 2011 20:32
Show Gist options
  • Select an option

  • Save cccaldas/1462586 to your computer and use it in GitHub Desktop.

Select an option

Save cccaldas/1462586 to your computer and use it in GitHub Desktop.
Bash Man to PDF for Mac
#!/bin/bash
man -t $1 > $2.ps
/System/Library/Printers/Libraries/convert -f $2.ps -o $2
rm $2.ps
#usage example: ./man-to-pdf git ~/Desktop/git.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment