Merging PDF files

Post date: 04-Dec-2008 19:59:58

In order to merge pdf files, make sure that the package ``gs" is install, then open a Konsole and write

[> sudo apt-get install gs pdftk

[> gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combined.pdf -dBATCH 1.pdf 2.pdf 3.pdf

This will merge the file 1.pdf, 2.pdf and 3.pdf into a file named combined.pdf

Enjoy

Oscar.