Print lines in file from the match line until end of file

Viewed 54554

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?

2 Answers
Related