Created
July 13, 2020 18:04
-
-
Save malenkiki/9b34acf3461dfeadbd06a0faea4eb97c to your computer and use it in GitHub Desktop.
Merge PDF into one PDF file keeping hyperlinks using Ghostscript
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 characters
| gs \ | |
| -dNOPAUSE \ | |
| -sDEVICE=pdfwrite \ | |
| -sOUTPUTFILE=output.pdf \ | |
| -dBATCH \ | |
| -dPDFSETTINGS=/printer \ | |
| -dPrinted=false \ | |
| -dEmbedAllFonts=true \ | |
| -dSubsetFonts=true \ | |
| -dFastWebView=true \ | |
| file-1.pdf file-2.pdf file-*.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment