Help for this page

Select Code to Download


  1. or download this
    @to_search = qw' /exists /doesnt-exist ';   # master list
    
    find( { wanted => \&wanted, bydepth => 0 }, grep { -d } @to_search);
    
  2. or download this
    @not_found = grep { ! -d } @to_search;
    warn "Not found: " . join(", ", @not_found) . "\n" if @not_found;