安裝hz2py
http://bluehua.org/2010/07/30/1410.html
然後把hz2py放在 PATH bin內
然後寫一個小Shell Scripting
#!/bin/sh
# find $1 -name "*.mp3"
for file in *.mp3; do
echo "processing $file"
destinationfile=`echo $file |hz2py`
cp "$file" "$destinationfile"
done
就可以把那個目錄夾裡頭所有MP3 都再複製一個拼音檔名了