[LAU] rubberband and batch processing

M-.-n nostromo at arkaos.net
Fri Jun 6 08:51:22 EDT 2008


Dave Phillips a écrit :
>
> 2. How do I use rubberband to process the whole directory ?
>
>
>   
Usually when the program doesn't support off the shelf wildcarding I use 
awk whose output I redirect to a script that I run after I checked it 
looks right

here's an example with mv:

ls *.wav | awk '{ print "mv "$1".wav "$1"-100.wav" }'  > doit.sh
chmod +w doit.sh
./doit.sh

hope this helps
Marc



More information about the Linux-audio-user mailing list