Automatic way of applying the same command to a bunch of files

Andy Green andy at warmcat.com
Wed Sep 20 12:02:34 UTC 2006


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




More information about the fedora-list mailing list