Rename 'JPG' to 'jpg'

From WickyWiki


sudo apt-get install rename
rename -n 's/(\d{1,3})\.JPG$/01_$1\.jpg/' *.JPG

Option -n shows what will be done, remove it to do it for real:

rename 's/(\d{1,3})\.JPG$/01_$1\.jpg/' *.JPG

See also: