Help for this page

Select Code to Download


  1. or download this
    $file !~ m/^[\w-]+(\.[\w-]+)*$/
    
  2. or download this
    cns061206
    
  3. or download this
    sub zip {
        (my $cmd, my $dir) = @_[0,1];
    ...
        }
    }
    
  4. or download this
    foreach my $file (glob($dir . '/*')) {
    
  5. or download this
    foreach my $file (glob($dir . '/*.gz'))
    
  6. or download this
    my @list = glob($dir . '/*');
    foreach my $file (@list) {
    
  7. or download this
    my @list = glob($dir . '/*.gz');
    foreach my $file (@list) {