Help for this page

Select Code to Download


  1. or download this
    ...
    for my $file (@files) {
    ...
        close $fh;
    }
    ...
    
  2. or download this
    ...
    my @handles = map { open my $fh, '<', $_; $fh } @files;
    ...
    
    close $_ for grep { $_->opened() } @handles;
    ...