recently I wanted to download 100+ foss seminar pdf/odp files from online. Step1 : Create a links.txt : first open a text file and paste all links line by line. Every line contain a link to a resource (pdf/odp). save it as links.txt Step 2: download it using this command
# wget -m -nd -i links.txt Two advantage : 1. you can issue this command and go to sleep. 2. even if your download fails (ex system reboot) you can issue the same command , It will download only the remaining files. One Disadvantage : (not exactly, unless you download videos and iso files) 1. Ex, if you have 10 links in files. assume script has downloaded 5 files and now currently it is downloading 6th file and 80% download has completed. If you Ctrl+C and re-run the same command it will start downloading the 6th files from beginning. adding -c option will not work. any suggestion !! -- ┌─────────────────────────┐ │ Narendra Sisodiya ( नरेन्द्र सिसोदिया ) │ R&D Engineer │ Web : http://narendra.techfandu.org │ Twitter : http://tinyurl.com/dz7e4a └─────────────────────────┘ --~--~---------~--~----~------------~-------~--~----~ Do you have another question? Click here - http://groups.google.com/group/iitdlug/post l...@iitd community mailing list -- http://groups.google.com/group/iitdlug -~----------~----~----~----~------~----~------~--~---
