#!/bin/sh
#
# lower2upper.sh
#
# Shell script for changing all lowercase filenames in a directory
# to uppercase filenames.
#
# John Roebuck - 01/03/2002

for oldfile in *
do

        newfile=`echo $oldfile| tr 'A-Z' 'a-z'`

        if [ $newfile != $oldfile ]
        then
                mv $oldfile $newfile
        fi
done