| Server IP : 13.126.101.145 / Your IP : 216.73.216.131 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-11-115-0-196 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 10:54:48 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.17 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/usr/bin/perl
eval 'exec perl -S $0 "$@"'
if $running_under_some_shell;
# fixwfwps: fix Word for windows PostScript for printing.
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.
$nesting = 0;
while (<>) {
tr/\000-\010\012-\014\016-\037//d;
foreach (grep($_ ne "", split("\015"))) {
s!/SVDoc\s+save\s+def!!g;
s!SVDoc\s+restore!!g;
if (/^(%!PS-Adobe-\d*\.\d*) EPSF-/ && !$nesting) {
print "$1\n";
$wfwepsf = 1;
} elsif (/^SS\s*$/ && $wfwepsf) {
print "%%Page: $wfwepsf $wfwepsf\n";
$wfwepsf++;
print "$_\n";
} elsif (/^%MSEPS Preamble/) {
print "%%BeginDocument: (Included EPSF)\n";
print "$_\n";
$nesting++;
} elsif (/^%MSEPS Trailer/) {
$nesting--;
print "$_\n";
print "%%EndDocument\n";
} elsif (! /^%%BoundingBox/) {
print "$_\n";
}
}
}