gfreehed
05-13-2003, 08:43 PM
I want to do something like this:
for d in `ls *.mp3`; do
mpg123 -w $d.wav $d
done
however, most of my mp3 files have spaces in their names. How do I get this to work without having to rename everything?
for d in `ls *.mp3`; do
mpg123 -w $d.wav $d
done
however, most of my mp3 files have spaces in their names. How do I get this to work without having to rename everything?