Help for this page

Select Code to Download


  1. or download this
    grep{ exists $ofInterest{ lc $_->{ Name } } } @proc_info
    ## : )
    
  2. or download this
    for my $info (
        grep{ exists $ProcsOfInterest{ lc $_->{ Name } } } @proc_info
    ) {
        printf "%-25s %14d %12.6f %14.7f\n", @{ $info }{ @fields };
    }