- or download this
while(<@eachline>){
- or download this
$ perl -MO=Deparse -e'while(<@eachline>){}'
use File::Glob ();
...
();
}
-e syntax OK
- or download this
$ perl -le'my @eachline = ( "one two three four\n", "five six seven ei
+ght\n" ); while(<@eachline>){print}'
one
...
six
seven
eight
- or download this
use strict;
use warnings;
...
close $FILEHANDLE;