|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/highlandlabs/cqi-bin/ALFA_DATA/alfasymlink/root/usr/local/bin/ |
Upload File : |
#!/usr/local/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 $_;
}
}