summaryrefslogtreecommitdiff
path: root/scripts/replace.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/replace.sh')
-rwxr-xr-xscripts/replace.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/replace.sh b/scripts/replace.sh
new file mode 100755
index 0000000..c6f9d4c
--- /dev/null
+++ b/scripts/replace.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+sed "s/$2/$3/g" $1 > temp
+mv -f temp $1
+
+