diff options
Diffstat (limited to 'scripts/replace.sh')
| -rwxr-xr-x | scripts/replace.sh | 6 |
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 + + |
