About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
lambdamusic
2/7/2013 - 9:28 PM
share
Share
add_circle_outline
Save
Bash: Shell : How to rename/mv large number of files
Bash: Shell : How to rename/mv large number of files
Snipplr-56327.bash
content_copy
file_download
for i in *.JPG; do mv $i ${i%.JPG}.tmp; done
clear