Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arumoy/a2f6d7bea205f3b961887ad255fbbc84 to your computer and use it in GitHub Desktop.
Save arumoy/a2f6d7bea205f3b961887ad255fbbc84 to your computer and use it in GitHub Desktop.

Revisions

  1. @brenopolanski brenopolanski revised this gist Jun 2, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion merge-pdf-ghostscript.md
    Original 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.
    Type the command `sudo apt-get install ghostscript` to download and install the ghostscript package and all of the packages it depends on.
  2. @brenopolanski brenopolanski created this gist Jun 2, 2014.
    9 changes: 9 additions & 0 deletions merge-pdf-ghostscript.md
    Original 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.