Skip to content

Instantly share code, notes, and snippets.

@edthrn
Created April 3, 2019 16:48
Show Gist options
  • Save edthrn/13d3ba31da2cfbd68730352f159c4b76 to your computer and use it in GitHub Desktop.
Save edthrn/13d3ba31da2cfbd68730352f159c4b76 to your computer and use it in GitHub Desktop.
Reduce PDF size from Ubuntu command-line
#!/bin/sh
# From https://askubuntu.com/a/626301
gs \
-sDEVICE=pdfwrite \
-dCompatibilityLever=1.4 \
-dPDFSETTINGS=/default \
-dNOPAUSE \
-dQUIET \
-dBATCH \
-dCompressFonts=true \
-r150 \
-sOutputFile=output.pdf \
{PATH_TO_FILE}.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment