Help for this page
use IO::File; # ... my $fh=IO::File->new; if ($fh->open($file,"<")) { # ...
open my $fh, "<", $file or die "Can't open $file $!";