- or download this
#!/usr/bin/perl
...
$. >= $start && $. <= $stop and print "$.: $_";
}
close $fh;
- or download this
$ perl extract.pl 5 8 extract.pl
5: use autodie;
...
7: sub usage
8: {
$
- or download this
$ perl -wne'5..8 and print' extract.pl
use autodie;
...
sub usage
{
$