in reply to output of Find::File into an array
From the docs:
# find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( '*.pm' ) ->in( @INC ); [download]
-Blake