I remember we had this discussion some time back.. on how to do this..

Rohit
===========================================
From: Unix Guru Universe <[EMAIL PROTECTED]>
RENAME FILES UPPERCASE TO LOWERCASe

To change all the files requested from
uppercase to lowercase simply use the following
script:

 ------------------------------- CUT HERE --------------

#!/bin/sh

#
# up2lo - rename files from uppercase to lower case.
#
for i in $*
do
   file=`echo $i | tr "[A-Z]" "[a-z]"`
   mv $i $file
done

 ------------------------------- CUT HERE --------------

To rename all the files from uppercase to lowercase inside
a directory you only have to use the following command:

% up2lo *

-----------------------------------------------------------------------
LIH is all for free speech.  But it was created for a purpose - to help
people discuss issues about installing and running Linux.  If your
messages are counterproductive to this purpose, your privileges to
submit messages can and will be revoked.

Reply via email to