Put the following line in a terminal open in the directory full of files you want lowercase, and it does the same thing (tr is a nifty program!):
for i in * ; do mv -n “$i” “$(echo “$i” | tr [:upper:] [:lower:])” ; done
Put the following line in a terminal open in the directory full of files you want lowercase, and it does the same thing (tr is a nifty program!):
for i in * ; do mv -n “$i” “$(echo “$i” | tr [:upper:] [:lower:])” ; done