#!/bin/sh
#
# DOWN YA GO!

for each in [A-Z]* [0-9]* [a-z]*
do
if [ -f "$each" ]
   then
   mv "$each"  "`echo $each | tr '[A-Z]' '[a-z]'`"
fi
done

