grep first word in the line code example
Example 1: grep last word in line
awk 'NF>1{print $NF}'
Example 2: grep all lines after first match
For grepping all lines from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file