in reply to Re^2: Perl script to print Next line after Pattern Matching
in thread Perl script to print Next line after Pattern Matching

I recognize that. So the point is to loop over the file handle; extract the next part when the current part is interesting.
  • Comment on Re^3: Perl script to print Next line after Pattern Matching

Replies are listed 'Best First'.
Re^4: Perl script to print Next line after Pattern Matching
by Anonymous Monk on Dec 21, 2011 at 15:12 UTC
    Should have added above that that works only because the same file handle being used in two places in the same loop does not go out of whack, and state is retained on the next iteration.