Help for this page

Select Code to Download


  1. or download this
    # this hash has list (keys) of all the files previously processed
    my %processed = map { $_ => 1 } @arraytocompare;
    ...
    
    closedir DIR;
    
  2. or download this
    # this hash has list (keys) of all the files previously processed
    my %processed = map { $_ => 1 } 100001 .. 108000;
    ...
    
    print scalar @newarray, "\n";