add file contents replacing script

This commit is contained in:
cuqmbr 2024-04-19 20:36:45 +03:00
parent 46bcac61d7
commit 3edd27d60a
Signed by: cuqmbr
GPG Key ID: 0AA446880C766199

7
recursive-replace.sh Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env sh
PATH_TO_ROOT_DIRECTORY="${1}"
STRING_TO_BE_REPLACED="${2}"
STRING_TO_REPLACE_TO="${3}"
find "${PATH_TO_ROOT_DIRECTORY}" -type f -print -exec perl -0777 -i -pe "s/${STRING_TO_BE_REPLACED}/${STRING_TO_REPLACE_TO}/g" {} \;