-
-
Save arumoy/a2f6d7bea205f3b961887ad255fbbc84 to your computer and use it in GitHub Desktop.
Revisions
-
brenopolanski revised this gist
Jun 2, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,4 @@ 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. -
brenopolanski created this gist
Jun 2, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ A simple Ghostscript command to merge two PDFs in a single file is shown below: ```sh 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.