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.
