summaryrefslogtreecommitdiff
path: root/scripts/mreplace.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/mreplace.sh')
-rwxr-xr-xscripts/mreplace.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/mreplace.sh b/scripts/mreplace.sh
deleted file mode 100755
index 1ef5cc4..0000000
--- a/scripts/mreplace.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-for j in pm pl xml txt css
-do
- for i in `find . -name "*.$j"`
- do
- echo $i
- sed "s/$1/$2/g" $i > temp
- mv -f temp $i
- done
-done
-