Paul Smith wrote:
Dear All I have in a directory a bunch of wav files to which I want to apply the following command: sox filename.wav -r 44100 output_filename.wav
for i in `ls *.wav` ; do sox $i -r 44100 output_$i.wav ; done should do it. -Andy
Paul Smith wrote:
Dear All I have in a directory a bunch of wav files to which I want to apply the following command: sox filename.wav -r 44100 output_filename.wav
for i in `ls *.wav` ; do sox $i -r 44100 output_$i.wav ; done should do it. -Andy