|
|
| The stupid question is the question not asked | |
| PerlMonks |
RE: How do I recursively process files through directoriesby thowland (Novice) |
| on Dec 26, 1999 at 22:46 UTC ( [id://1406]=note: print w/replies, xml ) | Need Help?? |
This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.
If in a *nix environment, and not wanting to goof with the File::Find module (which are certainly the _right_ way to do this), the fastest way to _type_ the solution may be:
foreach $file (split (/\n/, `find .`)) {
$newFile = $file;
$newFile =~ s/foo/bar/;
rename ($file,$newFile)
}
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||