Re: [PDXLUG] batch file conversions using sox

2004-03-11 Thread Don Buchholz
Russell Senior wrote: "Ken" == Ken Brush <[EMAIL PROTECTED]> writes: Carla> Is there a more streamlined way to do this? or a better utility Carla> than sox? Ken> Try using basename Here's the example: Ken> for i in `ls *.wav`; do echo -e "$i"; sox $i `basename $i Ken> .wav`.cdr; done

Re: [PDXLUG] batch file conversions using sox

2004-03-08 Thread Russell Senior
> "Ken" == Ken Brush <[EMAIL PROTECTED]> writes: Carla> Is there a more streamlined way to do this? or a better utility Carla> than sox? Ken> Try using basename Here's the example: Ken> for i in `ls *.wav`; do echo -e "$i"; sox $i `basename $i Ken> .wav`.cdr; done The backtick stuff is not

Re: [PDXLUG] batch file conversions using sox

2004-03-08 Thread Ken Brush
Carla Schroder said: > On Monday 08 March 2004 4:05 pm, Ken Brush wrote: >> Try using basename >> Here's the example: >> >> for i in `ls *.wav`; do echo -e "$i"; sox $i `basename $i .wav`.cdr; >> done > > OMG that is cool. There are more weird little specialized unix commands > than I > shall ever

Re: [PDXLUG] batch file conversions using sox

2004-03-08 Thread Carla Schroder
On Monday 08 March 2004 4:05 pm, Ken Brush wrote: > Try using basename > Here's the example: > > for i in `ls *.wav`; do echo -e "$i"; sox $i `basename $i .wav`.cdr; done OMG that is cool. There are more weird little specialized unix commands than I shall ever know. :) --

Re: [PDXLUG] batch file conversions using sox

2004-03-08 Thread Ken Brush
Carla Schroder said: > hiya ace audio-heads, > > Being as how I'm a sucky scripter, though improving through diligence, > hard > work, and pestering people who are good at scripting, I was wondering if > there was a way to improve this process. I want to do batch file > conversions > in sox, it has

[PDXLUG] batch file conversions using sox

2004-03-08 Thread Carla Schroder
hiya ace audio-heads, Being as how I'm a sucky scripter, though improving through diligence, hard work, and pestering people who are good at scripting, I was wondering if there was a way to improve this process. I want to do batch file conversions in sox, it has no built-in batch functions. Thi