Shell : How to rename/mv large number of files


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. for i in *.JPG; do mv $i ${i%.JPG}.tmp; done

URL: http://stackoverflow.com/questions/2981208/how-to-rename-large-number-of-files

Report this snippet


Comments


You need to login to view comments.