=head1 SYNOPSIS
use File::Find;
- find(\&wanted, @directories_to_seach);
+ find(\&wanted, @directories_to_search);
sub wanted { ... }
use File::Find;
find(\%options, @directories);
find() does a breadth-first search over the given @directories in the
-order they are given. In essense, it works from the top down.
+order they are given. In essence, it works from the top down.
For each file or directory found the &wanted subroutine is called (see
below for details). Additionally, for each directory found it will go