Download a list of files (list of their links)
If you have list of files you need to download, there is a way to do that automatically.
so, assuming every line is starting with http:... in any kind of text editor you replace option to replace every "http" with "wget -c -t5 -l1 http".
Then Save the list-file as a download.sh.
When you do that, then go to terminal/console window, type chmod 777 download.sh
and then ./download.sh
It then downloads everything from the list into current folder.
so, assuming every line is starting with http:... in any kind of text editor you replace option to replace every "http" with "wget -c -t5 -l1 http".
Then Save the list-file as a download.sh.
When you do that, then go to terminal/console window, type chmod 777 download.sh
and then ./download.sh
It then downloads everything from the list into current folder.
Comments