in reply to
Changing file permissions recursively
UNIX style:
perl -MFile::Find -e 'find(sub{ -f and do_something_with($File::Find::name)}, ".")'
DOS style:
perl -MFile::Find -e "find(sub{ -f and do_something_with($File::Find::name)}, '.')"
Comment on
Re: Changing file permissions recursively
Select
or
Download
Code
In Section
Seekers of Perl Wisdom