Re: FLV download script works, but I want to enhance it

2009-05-10 Thread Aahz
In article , The Music Guy wrote: >On Thu, May 7, 2009 at 9:29 AM, Aahz wrote: >> >> Here's my download script to get you started figuring this out, it does >> the wget in the background so that several downloads can run in parallel >> from a single terminal window: >> >> #!/bin/bash >> >> echo

Re: FLV download script works, but I want to enhance it

2009-05-08 Thread The Music Guy
On Thu, May 7, 2009 at 9:29 AM, Aahz wrote: > > Here's my download script to get you started figuring this out, it does > the wget in the background so that several downloads can run in parallel > from a single terminal window: > > #!/bin/bash > > echo "Downloading $1" > wget "$1" > /dev/null 2>&1

Re: FLV download script works, but I want to enhance it

2009-05-07 Thread Aahz
In article , The Music Guy wrote: > >After I download the files, I usually want to convert them to another >video format using command line tools, and I usually convert each one >in a separate terminal since that way they can all be converted at the >same time rather than one-by-one. Oddly enough