Created
December 11, 2011 20:32
-
-
Save cccaldas/1462586 to your computer and use it in GitHub Desktop.
Bash Man to PDF for Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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