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
***
It is a pain to try rename a batch of fi …
On July - 6 - 2008



Add A Comment