How to merge PostScript files
17/12/07 00:36 Filed in: Unix
Merging multiple PostScript files
The easiest way to merge two or more PostScript files is to simply concatenate them:$ cat intro.ps main.ps conclusion.ps > report.ps
To sanitise the resulting PostScript file, run
$ fixps report.ps
Note: there is a tool
psmerge, although I haven't got this to work. |