sed replace one line with another code example
Example 1: replace text with sed
sed -i 's/old-text/new-text/g' input.txt
Example 2: replace line with match sed
Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txt