summaryrefslogtreecommitdiff
path: root/tools/translate_V6-3-1_to_V7-0
diff options
context:
space:
mode:
authorGravatar Samuel Mimram <smimram@debian.org>2006-04-28 14:59:16 +0000
committerGravatar Samuel Mimram <smimram@debian.org>2006-04-28 14:59:16 +0000
commit3ef7797ef6fc605dfafb32523261fe1b023aeecb (patch)
treead89c6bb57ceee608fcba2bb3435b74e0f57919e /tools/translate_V6-3-1_to_V7-0
parent018ee3b0c2be79eb81b1f65c3f3fa142d24129c8 (diff)
Imported Upstream version 8.0pl3+8.1alphaupstream/8.0pl3+8.1alpha
Diffstat (limited to 'tools/translate_V6-3-1_to_V7-0')
-rwxr-xr-xtools/translate_V6-3-1_to_V7-027
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/translate_V6-3-1_to_V7-0 b/tools/translate_V6-3-1_to_V7-0
deleted file mode 100755
index 10e7f140..00000000
--- a/tools/translate_V6-3-1_to_V7-0
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh
-
-echo "This shell script performs the following transformations:"
-echo "- Insertion of a space after a dot not followed by a separator"
-echo "- Insertion of a space between consecutive ~ and < and between"
-echo " consecutive | and < assumed to be part of distinct tokens"
-echo "- Various renamings of commands as described in document Changes.ps"
-
-for i in $*
- do sed -e "s/\.\([A-Z]\)/\. \1/g" -e "s/AddPath/Add LoadPath/g" \
- -e "s/~</~ </g" -e "s/|</| </g" \
- -e "s/AddPath/Add LoadPath/g" -e "s/DelPath/Remove LoadPath/g" \
- -e "s/AddRecPath/Add Rec LoadPath/g" \
- -e "s/Implicit *Arguments *On/Set Implicit Arguments/g" \
- -e "s/Implicit *Arguments *Off/Unset Implicit Arguments/g" \
- -e "s/Begin *Silent/Set Silent/g" -e "s/End *Silent/Unset Silent/g" \
- -e "s/Print *Path/Print Coercion Paths/g" \
- $i > $i.tmp$$
- if diff $i.tmp$$ $i > /dev/null
- then
- rm $i.tmp$$
- else
- echo Le fichier $i a été modifié
- mv $i.tmp$$ $i
- fi
- done
-echo