- or download this
if( $_ eq "--end foo--\n"){
# . . .
}
- or download this
my $interesting_bit;
{
# maybe open here . . .
...
$interesting_bit = <FILE>;
# . . . and close here
}
- or download this
my $interesting_bit;
{
# maybe open here . . .
...
}
# . . . and close
}