/ Published in: Bash
URL: http://stackoverflow.com/questions/2981208/how-to-rename-large-number-of-files
Expand |
Embed | Plain Text
for i in *.JPG; do mv $i ${i%.JPG}.tmp; done
You need to login to post a comment.
URL: http://stackoverflow.com/questions/2981208/how-to-rename-large-number-of-files
for i in *.JPG; do mv $i ${i%.JPG}.tmp; done
You need to login to post a comment.