in reply to findINC
can be more easily written asforeach my $dir(@dirs) { find(\&checkForModule, $dir); }
unless you needed to know specifically which tree you are on, and that's not the case here.find (\&checkForModule, @dirs);
-- Randal L. Schwartz, Perl hacker
|
|---|