in reply to findINC

The code
foreach my $dir(@dirs) { find(\&checkForModule, $dir); }
can be more easily written as
find (\&checkForModule, @dirs);
unless you needed to know specifically which tree you are on, and that's not the case here.

-- Randal L. Schwartz, Perl hacker