Help for this page

Select Code to Download


  1. or download this
    push @all_handles, $fh;
    
  2. or download this
    my $fh = pop @all_handles;
    
  3. or download this
    for my $fh (@all_handles) {
       ...;  # do something with $fh
    }
    
  4. or download this
    my $count_filehandles = @all_handles;