Help for this page

Select Code to Download


  1. or download this
    my %hash
    for my $file (glob("*.*")) {
    ...
            $hash{$root} = $ext;
        }
    }
    
  2. or download this
    $hash{$root} = $ext if (not defined $hash{$root}) or $ext > $hash{$roo
    +t};