Merge Postscript files
Thursday 18 August 2005This one is the result of quite of a few minutes of digging in Google. To merge (join, combine, etc.) multiple Postscript files into a single one, just type this:
gs -sDEVICE=pswrite -sOutputFile=output.ps -dNOPAUSE -dBATCH file1.ps file2.ps file3.ps
You need Ghostscript, so if you have no access to a Unix box with gs preinstalled, grab a copy here.
... continued