There is an easy way to merge two or more PDF files. You can use the free software called Pdftk. You can get it via the package system of your preferred linux distribution or the homepage of the project.
Here is an example for merging threepdf files
pdftk 1.pdf 2.pdf 3.pdf cat output 123.pdf
You can find more examples on the projects website.
November 20, 2012 at 12:04 am |
Aren’t you merging 3 pdf files there?
November 20, 2012 at 9:00 am |
You are right, I’ll fix this in the posting
December 28, 2012 at 2:52 pm |
if you prefer python and much smaller software (compiling pdftk from source is ….) use stapler: https://github.com/hellerbarde/stapler
December 29, 2012 at 10:16 am |
thx for the information. thing is: pdftk is included in the debian repository and so i dont have to compile it from source. on the other hand stapler is not in the repos, so it is much more work for me to get it installed locally..