views:

17

answers:

1

Hi, I'm searching for a Method to combine two (or more) PDFs to a new one. This i have to do with the comman-line in windows. I haven't found a simple programm that can do this.

Has anyone an idea for a programm that can do this?

Best Regards

+1  A: 

I would install Ghostscript under Cygwin, then do something like the following (I always have to try the commands a couple of times to get them right):

gs -sDEVICE=pdf -sOutputFile=out.pdf file1.pdf file2.pdf [...]
Anon