From d3ebc21eadc5c32edc1ffaa026f51c260c2536fe Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 21 Sep 2016 19:11:48 +0300 Subject: add replace_word, swap_files --- .bash_utils/text.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to '.bash_utils/text.sh') diff --git a/.bash_utils/text.sh b/.bash_utils/text.sh index 5a678ee..cb34073 100644 --- a/.bash_utils/text.sh +++ b/.bash_utils/text.sh @@ -25,3 +25,17 @@ lint() { doslint() { trim "$@" && trimdoseol "$@" && doseol "$@" } + +replace_word() ( + set -o errexit -o nounset -o pipefail + + if [ "$#" -lt 3 ]; then + echo "usage: ${FUNCNAME[0]} OLD NEW PATH [PATH...]" >&2 + return 1 + fi + + local old="$1" + local new="$2" + + shift && shift && sed --binary --in-place "s/\\b$old\\b/$new/g" "$@" +) -- cgit v1.2.3