Answers for "replace a string after a keyword in shell script"

7

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
5

bash replace substring

echo [string] | sed "s/[original]/[target]/g"
Posted by: Guest on May-23-2020

Code answers related to "replace a string after a keyword in shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language