Rename those *.JPG files to *.jpg files in linux
Tue, 2010-10-26 11:27 | Franco
This simple line of code, when executed from within the directory will rename all picture files with the .JPG extension to have the .jpg extension
for x in *.JPG; do mv "$x" "${x%.JPG}.jpg"; donePopular content