diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-17 18:53:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-17 18:53:11 +0000 |
commit | ca7d35717b5607eacec8e03c76d37e6d976ff31b (patch) | |
tree | c5fc452b91d0d427623801fef42786c660ed59a6 /Master/bin/hppa-hpux/fixwwps | |
parent | cfaf3ba644b1df171aab1cf6bc2a39a1e2ad6914 (diff) |
restore hppa-hpux
git-svn-id: svn://tug.org/texlive/trunk@6989 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/hppa-hpux/fixwwps')
-rwxr-xr-x | Master/bin/hppa-hpux/fixwwps | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/bin/hppa-hpux/fixwwps b/Master/bin/hppa-hpux/fixwwps new file mode 100755 index 00000000000..bfd58c086da --- /dev/null +++ b/Master/bin/hppa-hpux/fixwwps @@ -0,0 +1,20 @@ +#!/usr/bin/env perl +# 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 $_; + } +} + |