Skip to content

Instantly share code, notes, and snippets.

@valyakuttan
Created May 10, 2023 17:42
Show Gist options
  • Save valyakuttan/20431aea7228fc9810ffcb8c234cea7c to your computer and use it in GitHub Desktop.
Save valyakuttan/20431aea7228fc9810ffcb8c234cea7c to your computer and use it in GitHub Desktop.

Useful pdf tricks on linux systems

  1. How to Merge multiple PDF files into one PDF

         $ pdfunite in-1.pdf in-2.pdf in-n.pdf out.pdf
  2. How to reduce the file size of a scanned PDF file

         $ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook \
              -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment