Created
November 11, 2015 07:28
-
-
Save onnimonni/53171bd3bc09b7ebe89e to your computer and use it in GitHub Desktop.
Wordpress project Source code to pdf in OS X
This file contains 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
find . -type f \( -name "*.html" -or -name "*.css" -or -name "*.php" -or -name "*.js" -or -name "*.json" -or -name "*.yml" \) | cut -c 3- | while read line ; do echo $line; echo "---"; cat "$line"; echo "---"; echo ; done > all-code.txt && cupsfilter -D all-code.txt > code.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment