Merge / convert multiple PDF files into one PDF

alcohol

How could I merge / convert multiple PDF files into one large PDF file?

I tried the following, but the content of the target file was not as expected:

convert file1.pdf file2.pdf merged.pdf

I need a very simple/basic command line (CLI) solution. Best would be if I could pipe the output of the merge / convert straight into pdf2ps ( as originally attempted in my previously asked question here: Linux piping ( convert -> pdf2ps -> lp) ).

alcohol

I'm sorry, I managed to find the answer myself using google and a bit of luck : )

For those interested;

I installed the pdftk (pdf toolkit) on our debian server, and using the following command I achieved desired output:

pdftk file1.pdf file2.pdf cat output output.pdf

OR

gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf file1.pdf file2.pdf file3.pdf ...

This in turn can be piped directly into pdf2ps.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Merge multiple PDF files into one in PHP

From Dev

Merge multiple PDF files into one in PHP

From Dev

Merge Multiple Documents and Convert to One Pdf in LibreOffice from Terminal

From Dev

How can i merge multiple jpg files completely into one pdf

From Dev

How to merge multiple PDF files to one one-page PDF in PHP

From Dev

Merge all pdf files from one folder

From Dev

How to merge multiple PDF files into a single file?

From Dev

Convert Multiple PowerPoint Files to PDF using CMD

From Dev

Combine multiple PDF files into one (arranged in a matrix)

From Dev

Downloading Multiple pdf files on One click in zip

From Dev

How to convert pdf files in multiple folders into multiple pdf files matching the folder names

From Dev

Merge multiple access reports to one pdf file using vba

From Dev

How to merge .pdf and .jpg file in one pdf

From Dev

wkhtmltopdf: Is it possible to merge PDF files?

From Dev

How to merge several PDF files?

From Dev

How to convert all pdf files to text (within a folder) with one command?

From Dev

How to convert all pdf files to text (within a folder) with one command?

From Dev

Merge multiple images in a PDF file

From Dev

How to convert a multi-page PDF file to PNG files, with one PNG file per page of the PDF document?

From Dev

Is there a tool to convert the pdf files to chm?

From Dev

How to convert PDF files to images

From Dev

Is there a tool to convert the pdf files to chm?

From Dev

Batch convert docx files to pdf

From Dev

How to convert Html files to Pdf?

From Dev

How to convert PDF files to images

From Dev

convert several png to one pdf

From Dev

convert several png to one pdf

From Dev

Overlay 2 pdf files into one

From Dev

Multiple Word Doc to pdf convert

Related Related

  1. 1

    Merge multiple PDF files into one in PHP

  2. 2

    Merge multiple PDF files into one in PHP

  3. 3

    Merge Multiple Documents and Convert to One Pdf in LibreOffice from Terminal

  4. 4

    How can i merge multiple jpg files completely into one pdf

  5. 5

    How to merge multiple PDF files to one one-page PDF in PHP

  6. 6

    Merge all pdf files from one folder

  7. 7

    How to merge multiple PDF files into a single file?

  8. 8

    Convert Multiple PowerPoint Files to PDF using CMD

  9. 9

    Combine multiple PDF files into one (arranged in a matrix)

  10. 10

    Downloading Multiple pdf files on One click in zip

  11. 11

    How to convert pdf files in multiple folders into multiple pdf files matching the folder names

  12. 12

    Merge multiple access reports to one pdf file using vba

  13. 13

    How to merge .pdf and .jpg file in one pdf

  14. 14

    wkhtmltopdf: Is it possible to merge PDF files?

  15. 15

    How to merge several PDF files?

  16. 16

    How to convert all pdf files to text (within a folder) with one command?

  17. 17

    How to convert all pdf files to text (within a folder) with one command?

  18. 18

    Merge multiple images in a PDF file

  19. 19

    How to convert a multi-page PDF file to PNG files, with one PNG file per page of the PDF document?

  20. 20

    Is there a tool to convert the pdf files to chm?

  21. 21

    How to convert PDF files to images

  22. 22

    Is there a tool to convert the pdf files to chm?

  23. 23

    Batch convert docx files to pdf

  24. 24

    How to convert Html files to Pdf?

  25. 25

    How to convert PDF files to images

  26. 26

    convert several png to one pdf

  27. 27

    convert several png to one pdf

  28. 28

    Overlay 2 pdf files into one

  29. 29

    Multiple Word Doc to pdf convert

HotTag

Archive