shell replace string in file code example
Example 1: how to find and replace a string in a file using shell script
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: sed replace in file
sed -i 's/foo/bar/g' hello.txt
Example 4: bash find and replace all files with specifc name with another file
find . -name "boom.txt" -exec cp ~/replace.txt {} \;
Example 5: bash search and replace text in file
awk '{gsub(regex, substitution_text, $field#); print $0;}' input_file
awk '{gsub(" ","",$0); print $0;}' input_file