Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
find -name "*.JPG" -exec rename 's/.JPG/.jpg/' {} +
rename -R 's/.JPG/.jpg/' "*.JPG"
Depends on distribution. [tt]rename[/tt] with that syntax I usually met on Debian and its descendants. On other distributions a different [tt]rename[/tt] is used, part of util-linux or util-linux-ng package.stefanwagner said:My version belongs to perl v5.10.0
find -name "*.JPG" -exec rename '.JPG' '.jpg' {} +