![]() |
|
Do you know where your variables are? | |
PerlMonks |
Re: Recursive directory scanningby Tyke (Pilgrim) |
on Mar 01, 2001 at 19:08 UTC ( #61557=note: print w/replies, xml ) | Need Help?? |
If you're doing *any* recursive directory stuff, use
the File::Find module. It simplifies the above to
perl -Mstrict -MFile::Find -wle 'find( sub {print}, @ARGV)' .
In Section
Seekers of Perl Wisdom
|
|