Friday, January 9, 2009

How to do mass renaming of file extension

Problem:
You want to rename all the .wiki files to be .textile instead.

Solution:
\ls -1 *.wiki | while read f; do mv $f ${f%.wiki}.textile; done

No comments: