Rename folder name from german to english
[ccbib.git] / psutils / fixscribeps.pl
blobd8ed1e86aa383ef58cf29f1d3bc1cced301a8d01
1 @PERL@
2 # fixscribeps: get conforming PostScript out of Scribe
4 # Copyright (C) Angus J. C. Duggan 1991-1995
5 # See file LICENSE for details.
7 $inepsf = 0;
8 $epsfn = 0;
9 while (<>) {
10 if (/^([0-9]+ [0-9]+ [0-9]+ PB) (%!.*)/) {
11 print "$1\n%%BeginDocument: Scribe-EPSF $epsfn 0\n$2\n";
12 $inepsf++;
13 } elsif (/^ PE/ && $inepsf) {
14 print "%%EndDocument\n", $_;
15 } else {
16 print $_;
19 @END@