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?
sed -n '/matched/,$p' file awk '/matched/,0' file
2.1m questions
2.1m answers
60 comments
57.0k users