# I have written this script with some help from my friends, # I had to mention this since a customer had a problem # Uploading files from an FTP client that uses upper case # 'CAPS'. It's known that unix is a case sensitive O/S so he # Had problems viewing files. This little script that I wrote # Should change all files that has some upper case to lower # Case in a certain DIR using tr(1), for more info 'man tr' for i in * ; do mv $i `echo $i | tr 'A-Z' 'a-z'`; done