Re: perl monger needed asap...

2003-01-10 Thread Jenda Krynicky
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

perl monger needed asap...

2003-01-09 Thread Benjamin Jurado
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.