|
Batch File Coding
Hey guys,
I'm trying to write a batch that will decode all the mp3's in some dir. Here is what I have so far:
for %%f in (*.mp3) do lame --decode "%%f" %f:~0,-4%.wav
However, that last part (that makes is exclude .mp3 from the file name) doesn't work, even though the good ole documentation says it should.
Anyone have any ideas?
__________________
Sanity is for the weak.
|