Answers for "sed delete characters"

4

sed remove line containing

sed '/pattern to match/d' ./infile
Posted by: Guest on December-23-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