On Aug 9, 2007, at 9:25 AM, Steve Lamb wrote:
for FILE in *.wav; do lame -h -b 160 "$FILE" "$FILE.mp3"; doneCorrect me if I'm wrong but wouldn't I just end up with with a bunch offiles named blahblah.wav.mp3?
Follow it with "rename .wav.mp3 .mp3 *". :)