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
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
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