tags:

views:

40

answers:

1

hi

I write the following awk to print lines from the match line until EOF

awk '/match_line/,/*/' file

how to do the same in sed?

Lidia

A: 
sed -n '/matched/,$p' file
awk '/matched/,0' file
ghostdog74