Skip to content

Instantly share code, notes, and snippets.

@singularitti
Created December 7, 2022 19:56
Show Gist options
  • Save singularitti/12dcaa0d8dc204ea703888d285976cdc to your computer and use it in GitHub Desktop.
Save singularitti/12dcaa0d8dc204ea703888d285976cdc to your computer and use it in GitHub Desktop.
Compress a PDF file #PDF #Shell
# Usage: compresspdf [input file] [output file] [screen*|ebook|printer|prepress]
compresspdf() {
gs -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -dBATCH -dPDFSETTINGS=/${3:-"screen"} -dCompatibilityLevel=1.4 -sOutputFile="$2" "$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment