Re: Query on File::Find

2005-07-07 Thread Shobha Deepthi
Hi Jeff, Thanks for your help. That really worked! Shobha Deepthi V The statement below is true. The statement above is false. Jeff 'japhy' Pinyan wrote: On Jul 7, Shobha Deepthi said: But I want to pass another parameter to find_and_instantiate_commav_file subroutine. I tried, fin

Re: Query on File::Find

2005-07-07 Thread Jeff 'japhy' Pinyan
On Jul 7, Shobha Deepthi said: But I want to pass another parameter to find_and_instantiate_commav_file subroutine. I tried, find({wanted => \&find_and_instantiate_commav_file("some_value"), no_chdir => 0}, $spec_entry); The syntax \&function returns a r

Re: Query on File::Find

2005-07-07 Thread John Doe
Shobha Deepthi am Donnerstag, 7. Juli 2005 06.19: > Hi, Hi probably not the best answer, but nobody else answered: > Am using find method in File::Find module. > Right now this method is being used as follows: >find({wanted => \&find_and_instantiate_commav_file, > no_

Query on File::Find

2005-07-06 Thread Shobha Deepthi
Hi, Am using find method in File::Find module. Right now this method is being used as follows: find({wanted => \&find_and_instantiate_commav_file, no_chdir => 0}, $spec_entry); But I want to pass another parameter to find_and_instantiate_commav_file subro