Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/remove_control_m.sh')
-rwxr-xr-xscripts/remove_control_m.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/remove_control_m.sh b/scripts/remove_control_m.sh
deleted file mode 100755
index 432c149c7a..0000000000
--- a/scripts/remove_control_m.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-# Script to remove ^M from files for DOS <-> UNIX conversions
-#
-
-if [ $# != 1 ]
-then
- echo "Usage: remove_control_m.sh <extension of files>"
- echo ""
- echo "Example: remove_control_m.sh php3"
- exit
-fi
-
-for i in `find . -name "*.$1"`
- do
- echo $i
- tr -d '\015' < $i > ${i}.new
- rm $i
- mv ${i}.new $i
- done;
-