in reply to Re^2: how to use find() options
in thread how to use find() options

The SYNOPSIS section from the documentation for the module shows exactly how to do what you're asking in this thread, and shows an example of what follow should contain:

Here's the third example in the SYNOPSIS section:

use File::Find; find({ wanted => \&process, follow => 1 }, '.');

Dave

Replies are listed 'Best First'.
Re^4: how to use find() options
by ypreisler (Novice) on Apr 19, 2024 at 07:43 UTC

    thanks a lot Dave, that solved my problem! :-)