From: Benjamin Jurado <[EMAIL PROTECTED]>
Subject: perl monger needed asap...
Please read "How To Ask Questions The Smart Way"
(http://www.tuxedo.org/~esr/faqs/smart-questions.html#bespecific)
ASAP.
> how can i store the results in a a
how can i store the results in a array,hash,reference...
use File::Find;
use strict;
my $foo1="/path/to/something";
sub foo{
#some filtering operations or even passing to another object or subroutine
}
find(\foo,$foo1);
I have tried passing \@foo and access this via $foo1->() but it did not
work.