AWK-grep from line number to the end of file

Does anyone know how to use awk to act like grep from a particular line number to the end of file? I am using Solaris 10 and I don't have any GNU products installed.

Say I want to print all occurrences of red starting at line 3 to the end of file.

EXAMPLE FILE:

red
green
red
red
yellow
green

So the ouput should be:
red
red

awk 'NR>=3 && /red/' infile
1 Like