Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

sed delete line before match

Use d option at the end of sed command string for deleting line of matches.
tac | sed -i "" "s/matching_pattern/I+1 d" file.txt | tac #
 
PREVIOUS NEXT
Tagged: #sed #delete #line #match
ADD COMMENT
Topic
Name
6+4 =