Difference between revisions of "Concatenate multiple PDF files"

From gr0x0rd
Jump to navigation Jump to search
(Created page with " gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf file1.pdf file2.pdf fileN.pdf")
 
 
Line 1: Line 1:
 +
This can be done using the ghostscript binary, likely already installed:
 +
 
  gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf file1.pdf file2.pdf fileN.pdf
 
  gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf file1.pdf file2.pdf fileN.pdf

Latest revision as of 14:00, 15 January 2021

This can be done using the ghostscript binary, likely already installed:

gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=finished.pdf file1.pdf file2.pdf fileN.pdf