Answers for "remove line with match command"

1

sed remove line after match

Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/,+1 d" file.txt #+1 defines number of lines
# to delete after matching line
Posted by: Guest on December-17-2020
-2

remove line with match command

Use d option at the end of sed command string for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txt
Posted by: Guest on October-24-2020

Code answers related to "remove line with match command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language