for name in *; do mv "$name" "${name,,}"; done
Loop over the items in the current directory, and use Bash built-in case modification expansion to convert to lower case.
The case modification extension ${name,,}
requires Bash 4.
paste <(ls) <(ls | tr A-Z a-z) | while read OLD NEW; do echo mv -v $OLD $NEW; done