sed to replace a line in a file code example
Example: 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"
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"