Wget: Download multiple files without clicking one by one

January 25, 2011 in IT and Stuff

Sometimes I get annoyed by teacher who gives the list of materials we have to read. And I of course have to save all the files to my directory. And guess what! I used to download it one by one…and it is really pain in the ass. And after that, something happen…I lost my notebook and I have to re-do all the things again and again.

Therefore, I tried to look for the way to be able to download all the files in a single command…and this is what I found.

wget -r -l1 –no-parent *.* url

This command above will crawl the site and download every files mentioned there automatically to your local directory. So, it will make your life easier. :)