Help for this page

Select Code to Download


  1. or download this
    for my $k (sort keys %$hFiles) {
      # ^$k$ forces $k to match the entire value of each entry in @aFiles
    ...
      next if scalar grep( /^$k$/, @aFiles);
      print "key=$k\n";
    }