Last active
October 9, 2015 01:03
-
-
Save JesseEisen/863c33d92f248301c9a8 to your computer and use it in GitHub Desktop.
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
e.g. man -t bash | ps2pdf - bash.pdf | |
But sometimes ps2pdf may encounter an error, the reson is that '-' is not a filename, that's so weird. And i use the following | |
command to fix this error | |
e.g. man -t bash > temp | |
ps2pdf temp bash.pdf | |
It's temperaly way to solve this problem. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment