in reply to Re: how to next line after the pattern in perl
in thread how to next line after the pattern in perl

print <FF>; executes the <...> aka readline in list context, and thus prints all the remaining lines in the file.

Adding a scalar after the print should solve that problem.

Perl 6 - links to (nearly) everything that is Perl 6.