...
find . -name "A-Z" | cut -c 3- - | awk '{print $1,tolower($1)}' | xargs -i echo "mv {}" | csh
This will find everything with uppercase letters and rename it to the
same thing with all lowercase.
...
...
find . -name "A-Z" | cut -c 3- - | awk '{print $1,tolower($1)}' | xargs -i echo "mv {}" | csh
This will find everything with uppercase letters and rename it to the
same thing with all lowercase.
...