Help for this page

Select Code to Download


  1. or download this
    local *FILE;
    open FILE, "<", "./$nbdc_dir/$file" or die ...
    ...
    
  2. or download this
    open my $fh, "<", "./$nbdc_dir/$file" or die ...
    $nbdc_filehandles[$index] = $fh;
    
  3. or download this
    open $nbdc_filehandles[$index], "<", "./$nbdc_dir/$file" or die ...
    
  4. or download this
    $_ = <$fh>;    # OK
    $_ = < $fh >;  # not OK
    
  5. or download this
    my $fh = $nbdc_filehandles[$index];
    $_ = <$fh>;
    # instead of
    # $_ = <$nbdc_filehandles[$index]>;
    
  6. or download this
    my @nbdc_filehandles;
    my @nbdc_data;
    ...
    my $fh = $nbdc_filehandles[$idx];
    my $line = <$fh>;
    # ...