Answers for "find and replace a line in file using shell script"

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 specific line in file

# Basic syntax:
sed '<row_number>s/.*/<replacement_text>/' your_file
# Where:
#	- The row_number is the row your want to replace with the
#		replacement_text
#	- .* means match anything on that row (so it can be replaced)
Posted by: Guest on July-22-2021

Code answers related to "find and replace a line in file using shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language