in reply to Getting next line after matched one
The one-liner approach:
$ cat input.txt one two three four five six seven $ perl -ne 'print $_ = <> and last if /five/' input.txt six [download]