Skip to content

Instantly share code, notes, and snippets.

@onnimonni
Created November 11, 2015 07:28
Show Gist options
  • Save onnimonni/53171bd3bc09b7ebe89e to your computer and use it in GitHub Desktop.
Save onnimonni/53171bd3bc09b7ebe89e to your computer and use it in GitHub Desktop.
Wordpress project Source code to pdf in OS X
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