Introduction

Here are some quick tips (albeit a bit crude) to make bulk modifications to elements.

Rename All Uppercase Elements to Lowercase

1
find . -type f

Make Elements Sequential

1
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. history