Here is a way to rename files in bash, from upper case filenames to lowercase ones
for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; donevia Rename files from upper case filename to lower case (in ... read more ...
"Reading, after a certain age, diverts the mind too much from its creative pursuits. Any man who reads too much and uses his own brain too little falls into lazy habits of thinking." -- Albert Einstein
Here is a way to rename files in bash, from upper case filenames to lowercase ones
for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; donevia Rename files from upper case filename to lower case (in ... read more ...