On this page
Batch Renaming Elements
Introduction
Here are some quick tips (albeit a bit crude) to make bulk modifications to elements.
Rename All Uppercase Elements to Lowercase
find . -type f
Make Elements Sequential
for i in `seq -f %03g 5 50 111`; do echo $i ; done
The seq command will give:
foo01
foo04
foo07
foo10
Last updated 20 Sep 2009, 15:03 CEST.