[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]
Re: Re: downloaders for linux
>> That is the difference between Windows and Linux. Under Linux you don't
>> need such capability. Just start another instance of the program and run
all
>> of them in background ( use & after the command)
>>
>> Like
>>
>> wget <URL1> &
>> wget <URL2> & ...
>Here is a better way:
>
>dump all the URLs into a text file one after the other, then run
>
>wget -b -i <listfilename>
>
> and go away ;-)
This will download the files one after another. Whereas starting multiple
wget session will get all the file simultaneously.
- Soumya