Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.119.157.233
#!/usr/bin/perl
eval 'exec perl -S $0 "$@"'
if $running_under_some_shell;
# fixwwps: get semi-conforming PostScript out of Windows Write file
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.
$page = 1;
while (<>) {
if (/^(%!.*) EPSF-\d.\d/) {
print $1, "\n";
} elsif (/^SS/) {
print "%%Page: $page $page\n";
print $_;
$page++;
} else {
print $_;
}
}
|