change all the files *.JPG to *.jpg#!/bin/bashfind . -name '*.JPG' | \while read filenamedo dir=${filename%.JPG} echo $filename "$dir".jpg mv $filename "$dir".jpgdone
Post a Comment
No comments:
Post a Comment