Help for this page

Select Code to Download


  1. or download this
      my %h;
      for my $file ( glob "*.[abc]" )
    ...
          push @{ $h{$file_k0}{$file_k1} }, [ split /\t/ ];
        }
      }
    
  2. or download this
      for my $file_k0 ( sort keys %h ) {
        for my $file_k1 ( sort keys %{ $h{$file_k0} } ) {
    ...
          }
        }
      }