Answers for "bash replace string with path in file"

6

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
Posted by: Guest on February-11-2021
0

bash replace string

string="stirng" ; echo "${string//ir/ri}"
Posted by: Guest on October-29-2021

Code answers related to "bash replace string with path in file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language