find and replace using sed code example
Example 1: linux replace string in all files
sed -i 's/old-text/new-text/g' input.txt
Example 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"
Example 3: bash find and replace all files with specifc name with another file
find . -name "boom.txt" -exec cp ~/replace.txt {} \;