linux replace string in file code example

Example 1: how to find and replace a string in a file using shell script

# replaces ALL(g i.e. global) ouccurences of "original_string" with "new_string", 
# in the file file_name.ext_name
sed -i 's/original_string/new_string/g' file_name.ext_name

Example 2: ubuntu command line replace word in files

sed -i 's/original/new/g' file.txt

Example 3: linux replace string in all files

sed -i 's/old-text/new-text/g' input.txt

Example 4: sed replace in file

sed -i 's/foo/bar/g' hello.txt

Example 5: 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 6: bash find and replace all files with specifc name with another file

find . -name "boom.txt" -exec cp ~/replace.txt {} \;