[TriLUG] Changing case of files and folders
Alan Porter
porter at trilug.org
Tue Jan 31 18:39:20 EST 2006
Or in bash...
for x in * ; do
y=`echo $x | tr "a-z" "A-Z"`
echo mv $x $y
done
When you're done testing, remove the last "echo".
Alan
.
More information about the TriLUG
mailing list