Skip to content

Instantly share code, notes, and snippets.

@ryanwr
Created February 6, 2016 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanwr/b63db0957710a430c6ef to your computer and use it in GitHub Desktop.
Save ryanwr/b63db0957710a430c6ef to your computer and use it in GitHub Desktop.
Convert source code to PDF
Generate PDF file of source code using enscript and ps2pdf
enscript -r \
--columns=2 \
--file-align=1 \
--highlight \
--color=1 \
--line-numbers \
--header='$N|Page $% of $=' \
-o - \
`find . -name '*.java'` \
| ps2pdf - files.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment