I wrote the following awk to print lines from the match line until EOF
awk '/match_line/,/*/' file
How can I do the same in sed?
I wrote the following awk to print lines from the match line until EOF
awk '/match_line/,/*/' file
How can I do the same in sed?