in reply to Return values, Closure Vars from File::Find &wanted subs?
Try File::Find::Rule. Your example would translate as something like (untested):
use File::Find::Rule; dostuff($_) for File::Find::Rule->file->in( @ARGV ); [download]