Answers for "sed delete line match"

1

sed delete line match

sed '/pattern to match/d' ./infile
Posted by: Guest on June-09-2021
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
0

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 #
Posted by: Guest on December-17-2020
0

delete strings after match to eol using sed command

# You can use awk's field separator (-F) following way:
$ cat file
google.com/funny
unix.stackexchange.com/questions
isuckatunix.com/ireallydo
Posted by: Guest on August-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language