Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save JasonLMoffit/55fbc0153c6749dd6ace5c522abff074 to your computer and use it in GitHub Desktop.

Select an option

Save JasonLMoffit/55fbc0153c6749dd6ace5c522abff074 to your computer and use it in GitHub Desktop.
Merge multiple PDFs using Ghostscript

A simple Ghostscript command to merge two PDFs in a single file is shown below:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf

Install Ghostscript:

Type the command sudo apt-get install ghostscript to download and install the ghostscript package and all of the packages it depends on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment