#!/bin/sh # # DOWN YA GO! for each in [A-Z]* [0-9]* do if [ -f "$each" ] then mv "$each" "`echo $each | tr '[A-Z]' '[a-z]'`" fi done