0xV3NOMx
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.117.71.102


Current Path : /proc/thread-self/root/usr/bin/
Upload File :
Current File : //proc/thread-self/root/usr/bin/fixwpps

#!/usr/bin/perl
eval 'exec perl -S $0 "$@"'
	if $running_under_some_shell;

# fixwpps: get semi-conforming PostScript out of WordPerfect 5.0 file
#
# Copyright (C) Angus J. C. Duggan 1991-1995
# See file LICENSE for details.

$page = 1;
$nesting = 0;

while (<>) {
   s/([^\/]_t)([0-9]+)/\1 \2/g;	# fix wp 5.0 bug
   if (m!/_[be][dp]! || m!_bp \d+ \d+ roll!) {
      print $_;
   } elsif (/^(.*)(_bp.*)$/) {
      print "$1\n" if $1 ne "";
      print "%%Page: $page $page\n";
      print "$2\n";
      $page++;
      $nesting++;
   } elsif (/_ep$/) {
      print $_;
      $nesting--;
   } elsif (/^(.*)(_ed.*)/) {
      print "$1\n" if $1 ne "";
      print "%%Trailer:\n";
      print "$2\n";
   } else {
      print $_;
   }
}