summaryrefslogtreecommitdiff
path: root/Master/bin/x86_64-linux/fixtpps
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-10 12:56:22 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-01-10 12:56:22 +0000
commit8fe63ef3d9d533a512619bbea97a7d868437e2c2 (patch)
tree4857a3ad71032609ec2f5ca3e2e9b450867086a6 /Master/bin/x86_64-linux/fixtpps
parentae3abcea86067a9cdb6a426102b6eed17a2526c9 (diff)
linked scripts
git-svn-id: svn://tug.org/texlive/trunk@21008 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/x86_64-linux/fixtpps')
-rwxr-xr-xMaster/bin/x86_64-linux/fixtpps28
1 files changed, 0 insertions, 28 deletions
diff --git a/Master/bin/x86_64-linux/fixtpps b/Master/bin/x86_64-linux/fixtpps
deleted file mode 100755
index 4239bb9dfc5..00000000000
--- a/Master/bin/x86_64-linux/fixtpps
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env perl
-# fixtpps: fix tpscript document to work with PSUtils
-#
-# Copyright (C) Angus J. C. Duggan 1991-1995
-# See file LICENSE for details.
-
-$nesting = 0;
-$header = 1;
-
-while (<>) {
- if (/^%%Page:/ && $nesting == 0) {
- print $_;
- print "save home\n";
- $header = 0;
- } elsif (/^%%BeginDocument/ || /^%%BeginBinary/ || /^%%BeginFile/) {
- print $_;
- $nesting++;
- } elsif (/^%%EndDocument/ || /^%%EndBinary/ || /^%%EndFile/) {
- print $_;
- $nesting--;
- } elsif (/save home/) {
- s/save home//;
- print $_;
- } elsif (!$header || (! /^save$/ && ! /^home$/)) {
- print $_;
- }
-}
-