Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!sri-unix!hplabs!hp-sdd!ncr-sd!ncrcae!usceast!tech From: tech@usceast.UUCP Newsgroups: comp.sys.atari.st Subject: Re: Publishing Partner Message-ID: <2328@usceast.UUCP> Date: Mon, 23-Feb-87 16:24:23 EST Article-I.D.: usceast.2328 Posted: Mon Feb 23 16:24:23 1987 Date-Received: Thu, 26-Feb-87 22:37:05 EST References: <8702210126.AA25876@ucbvax.Berkeley.EDU> Reply-To: tech@usceast.UUCP (Bill Wood) Organization: Csci Dept, U of S. Carolina, Columbia Lines: 33 In article <8702210126.AA25876@ucbvax.Berkeley.EDU> FXDDR@ALASKA.BITNET.UUCP writes: >I've been scratching my head trying to figure out why my Publishing Partner >postscript files wouldn't run on the Apple Laserwriter connected to the >vax here, not being much of a laserwriter/postscript hacker. After some I have been using PP with a Laser Writer on a Vax for about a month. If you are using unix the fix is fairly simple. Use tr to translate all ^M's in the file to ^J's (make them unix style newlines) Ex: tr '\015' '\012' outfile The other problem we encountered was in the preamble. The first four lines of the file generated from the command above will contain 2 ^C's which will kill the job in the spooler. The filter included below should be run after you have changed the newlines it will generate the correct preamble for the adobe postscript driver under Berkley 4.2 #include main() { int c; while((c=getchar())!= '/'); printf("%%!\n"); putchar(c); while((c=getchar())!=EOF) putchar(c); } Good Luck, Bill Wood (!usceast!tech)