TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:18058] stripping caps



I just read this recently: see
http://www.chicagotribune.com/tech/developer/article/0,2669,2-44389,FF.html

#!/bin/sh
for i in * ; do [ -f $i ] && mv -i $i
`echo $i | tr 
'[A-Z]' '[a-z]'`;
done;



Phil Plumbo wrote:
> 
> I've got a lot of files whose names are MiXed CaSE, and I need to change
> them all to lower case.
> Is there a quick way to do this?
> 
> Thanks
>