grep first match after certain line code example
Example 1: grep first occurence for many matches
Just use flag -m to define number of occurrences to match:
grep -m1 pattern file
Example 2: grep nth line after match
awk 'c&&!--c;/pattern/{c=N}' file