Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Generate PDF file of source code using enscript and ps2pdf
  2.  
  3. enscript -r \
  4. --columns=2 \
  5. --file-align=1 \
  6. --highlight \
  7. --color=1 \
  8. --line-numbers \
  9. --header='$N|Page $% of $=' \
  10. -o - \
  11. `find . -name '*.java'` \
  12. | ps2pdf - files.pdf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement