On Wed, 13 Aug 2003 12:32:53 +1200
Christopher Sawtell <[EMAIL PROTECTED]> wrote:

> On Wed, 13 Aug 2003 12:26, you 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`
> do
> LC_FILENAME=`echo filename | tr 'A-Z' 'a-z'`

fhould that be `echo $f | tr ..etc

> mv $f  $LC_FILENAME
> done
> 
> You need to come on the Linux course being organised by the OSTC.
> 
> -- 
> Sincerely etc.,
> Christopher Sawtell
> 

-- 
Nick Rout <[EMAIL PROTECTED]>

Reply via email to