Skip to content

Instantly share code, notes, and snippets.

@mperlet
Created March 28, 2017 09:23
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 mperlet/faceb292e1fd1ebaa35c088873cb3eae to your computer and use it in GitHub Desktop.
Save mperlet/faceb292e1fd1ebaa35c088873cb3eae to your computer and use it in GitHub Desktop.
Shell function to compress pdf file usage: cpdf my_big_document.pdf
function cpdf() {
/usr/bin/gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=$1.compress.pdf $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment