Answers for "sed replace all occurances?"

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

Code answers related to "sed replace all occurances?"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language