- or download this
while (<fh>) { ... }
while (defined ($_ = <fh>)) { ... }
- or download this
while ($var = <fh>) { ... }
- or download this
if ($line =~ m/$stag/ .. /$etag/)
- or download this
if (($line =~ m/$stag/) .. ($line =~ m/$etag/))
- or download this
if (($line =~ m/$stag/) .. ($_ =~ m/$etag/))