On Wed, 13 Sep 2000, Ronald J. Hall wrote:

> Is there a 'Nix command that will change filenames in a directory from UPPER
> case to all lowercase?

This will lowercase all your filenames :

  for i in *[A-Z]* ; do mv $i `echo $i |tr "A-Z" "a-z"` ; done

PS : note that the single quotes are reversed...

HTH
Flupke

-- 
        << There's no place like ~ >>


Reply via email to