in reply to Re: doing something with the rest of a file after matching a keyword
in thread doing something with the rest of a file after matching a keyword

That's far too complex.

my @saved; while (<FILE>) { @saved = <FILE> if /Well/; }
--
<http://www.dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg

  • Comment on Re: Re: doing something with the rest of a file after matching a keyword
  • Download Code