summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-07 15:28:53 +0200
committerPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-07 15:28:53 +0200
commit65b3c6841f3fcddaedcef9b2ad6b46c35dd61839 (patch)
treeebfc2f348f1bb0d55adcdcf8e210525afdc6b068
parentd53f89f0f82527e010a5a194b9977556c68f8b1e (diff)
remove obsolete scripts
-rwxr-xr-xscripts/mreplace.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/mreplace.sh b/scripts/mreplace.sh
deleted file mode 100755
index 32f2c17..0000000
--- a/scripts/mreplace.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-for j in pm pl xml txt css
-do
- for i in `find . -name "*.$j"`
- do
- echo $i
- sed -i "s/$1/$2/g" $i > temp
- done
-done
-