Help for this page

Select Code to Download


  1. or download this
    for my $key( sort { $b <=> $a } keys %sizehash ) {
        # blah
    }
    
  2. or download this
    for my $file( sort { $sizehash{$b} <=> $sizehash{$a} } keys %sizehash 
    +) {
        my $size = commas($sizehash{$file});
      last if $y++ > 10;
        print "$size: $file\n";
    }