Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have large files that I want to do some selecting printing on. I want to find a line based on a pattern match and print this line, and all following lines up to the end of the file. I would use sed, however, the match is only based on the first and second column.

awk '{if($1=="XYZ" && $2=="GT") print $0}' in.file > out.file

How can I change the above to also print all lines following the match.

share|improve this question

3 Answers

up vote 3 down vote accepted

Use a printing flag:

awk '$1=="XYZ" && $2=="GT" { f = 1 } f' in.file > out.file

The f is set to 1 when the two conditions are met. The lone f at the end of the script invokes the default block { print $0 } when 1.

share|improve this answer
excellent, a useful tool to know! – user1308144 Mar 12 at 8:47

Or try using a range pattern:

awk '$1=="XYZ" && $2=="GT",end' file
share|improve this answer

For me, your sed approach was fine. If the separator is ;:

sed -n -e '/^XYZ;GT;/,$p' your_file
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.