Answers for "find all occurences of word and replace linux"

2

sed replace all occurances?

echo dog dog dos | sed -e 's:dog:log:g'

#You can also use the above answer with appropriate slashes like
echo "grepper is a nice grepper" | sed "s/grepper/blow/g"
Posted by: Guest on June-17-2020
0

Linux Find word and replace text

sed -i -e '/FOO/s/love/sick/' input.txt
Posted by: Guest on October-22-2021

Code answers related to "find all occurences of word and replace linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language