Help for this page

Select Code to Download


  1. or download this
    my @found;
    find(sub { push @found, $File::Find::name; }, @directories);
    ...
        next if !check($_);
        ...
    }
    
  2. or download this
    my @found;
    find(sub { push @found, $File::Find::name if check($File::Find::name);
    + }, @directories);
    ...
    for (@found) {
        ...
    }