#!/bin/sh # lcnames - change names to lowercase # for a list of file names in upper case, this script # will rename the file to their lower case equivalents # # Usage: lcnames [filelist] # # Lewis E. Gilbert # gel@ldeo.columbia.edu for f in $* do F=`echo $f |tr A-Z a-z` mv $f $F done