Смена регистра рекурсивно файлов и папок

#!/bin/sh

for file in `find /full/path/to/folder -print`
do
   mv $file `echo $file | tr [:upper:] [:lower:]` 2>/dev/null
done