in reply to Re: Re^3: File Find question
in thread File Find question

Yes. find(\&search, $dirs, $dirs2, $dirs3); Which should actually be
my @dirs = ('/web/directory/AA', '/web/directory/BB', '/web/directory/ +CC',); find(\&search, @dirs);
Which can be written as my @dirs = map "/web/directory/$_", 'AA', 'BB', 'CC'; Which we can then embed in the function call: find(\&search, map "/web/directory/$_", 'AA', 'BB', 'CC'); :)

Makeshifts last the longest.