Not Bashing Windows

Whenever I use Windows, I really miss the power of the command line.

I’ve recently had to convert a number of wav files to mp3s. From bash it’s as simple as:

for i in *wav; do lame -h $i `echo $i | sed -e "s/wav/mp3/g"`; done

I’d hate to do that via a GUI.

Leave a Reply