- or download this
if (! open my $in_fh, '<', $in ) {
# ^^ <- HERE
die "Can't open '$in': $!";
}
- or download this
if (! open my $fh, '<', $file){
die $!;
}
# file handle already closed if you try to access here
- or download this
{
open my $fh, '<', $file or die $!;
...
}
# but not here, fh auto-closed in the block
- or download this
my $fh;
...
# the place you intend to use them
open my $fh, '<', $file or die $!;