You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
old_text=$1
|
|
new_text=$2
|
|
echo "Old text: ${old_text}"
|
|
echo "New text: ${new_text}"
|
|
grep -rl "${old_text}" . | xargs gsed -i -e '1h;2,$H;$!d;g' -e "s/${old_text}/${new_text}/g"
|