On Wed, 13 Aug 2003, Nick Rout wrote: > > > Hi all, I need to recursively rename a bunch of uppercase files to > > > lowercase files. This sounds like something that a tool may exist for, or a > > > simple script would do. Any ideas on the easiest way to to this? > > > > for f in `ls`
and to do it recursively you might need something like: for f in `find . -type f -print` :) Tim Wright Assistant Lecturer Department of Computer Science University of Canterbury "Language, like terrorism, targets civilians and generates fear to effect political change." -- "Collateral Language" John Collins and Ross Glover ed.
