Thursday, December 4, 2008

FOSS Futcha!

a futcha’s guide to FOSS

It is a pain to try rename a batch of fi …

Posted by Kinshuk Sunil On July - 6 - 2008

It is a pain to try rename a batch of files using terminal; even the rename command is sort of tricky… if you need to rename a batch of files, use this contributed script:
***
for fl in *.wav
do
echo $fl
tmp=`basename $fl `
newfl=$tmp”
mv $fl $newfl
done
***

Add A Comment