: bourne shell script by Julian Stacey : moves all files to lower case filenames, useful after using Mtools mread : syntax tolower filenames for i in $* do # mv $1 `echo $1 | dd conv=lcase` mv "$1" `echo $1 | tr "[:upper:]" "[:lower:]"` shift done