Help for this page

Select Code to Download


  1. or download this
    foreach my $key ( grep { /^[A-Z]+$/ } keys %runset ) {
        print $key, " ", $runset{$key}, "\n";
    }
    
  2. or download this
    delete $runset{$_} for ( grep { !/^[A-Z]+$/ } keys %runset );