diff options
author | punk <punk@libernaut> | 2021-04-21 15:42:20 +0100 |
---|---|---|
committer | punk <punk@libernaut> | 2021-04-21 15:42:20 +0100 |
commit | 4107462e9ec1cabaa7f89bd8478caec3f0d5b46a (patch) | |
tree | a2e34d995cef5ac8068ec7047e93b1125c80d175 /tools/scripts/replace.sh | |
parent | cfce80c5a0b8bc1eccc2f22a0d5d045d29467083 (diff) | |
parent | eac48b5a8d709135a95abcc2243b369095f074f4 (diff) | |
download | doc-4107462e9ec1cabaa7f89bd8478caec3f0d5b46a.tar.gz |
Merge branch 'master' into develop
Diffstat (limited to 'tools/scripts/replace.sh')
-rwxr-xr-x | tools/scripts/replace.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/scripts/replace.sh b/tools/scripts/replace.sh deleted file mode 100755 index 8d5d8d9..0000000 --- a/tools/scripts/replace.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -# find and replace string on files -folder=$1 -oldstring=$2 -newstring=$3 - -#grep -rl $oldstring $folder | xargs sed -i s@$oldstring@$newstring@g -grep -rl "$oldstring" $folder | xargs sed -i "s@$oldstring@$newstring@g" |