: bourne shell script by Julian Stacey : moves all files to upper case filenames, useful after using vobcopy : and perhaps comparing against a mount -t udf or cd9660 : syntax toupper filenames for i in $* do # mv $1 `echo $1 | dd conv=ucase` mv "$1" `echo $1 | tr "[:lower:]" "[:upper:]"` shift done