
Wget command to get list of files without downloading - you tell
How do I download an entire website for offline viewing? How do I save all the MP3s from a website to a folder on my computer? How do I download files that are behind a login page? How do I build a mini-version of Google?
Wget is a free utility - available for Mac, Windows and Linux (included) - that can help you accomplish all this and more. What makes it different from most download managers is that can follow the HTML links on a web page and recursively download the files. It is the same tool that a soldier had used to download thousands of secret documents from the US army’s Intranet that were later published on the Wikileaks website.
You mirror an entire website with wget
Spider Websites with Wget - 20 Practical Examples
Wget is extremely powerful, but like with most other command line programs, the plethora of options it supports can be intimidating to new users. Thus what we have here’s a collection of wget commands that you can use to accomplish common tasks from downloading single files to mirroring entire websites. It will help if you can read through the wget manual but for the busy souls, these commands are ready to execute.
1. Download a single file from the Internet
2. Download a file but save it locally under a different name
3. Download a file and save it in a specific folder
4. Resume an interrupted download previously started by wget itself
5. Download a file but only if the version on server is newer than your local copy
6. Download multiple URLs with wget. Put the list of URLs in another text file on separate lines and pass it to wget.
7. Download a list of sequentially numbered files from a server
8. Download a web page with all assets - like stylesheets and inline images - that are required to properly display the web page offline.
Mirror websites with Wget
9. Download an entire website including all the linked pages and files
10. Download all the MP3 files from a sub-directory
11. Download all images from a website in a common folder
12. Download the PDF documents from a website through recursion but stay within specific domains.
13. Download all files from a website but exclude a few directories.
Wget for Downloading Restricted Content
Wget can be used for downloading content from sites that are behind a login screen or ones that check for the HTTP referer and the User-Agent strings of the bot to prevent screen scraping.
14. Download files from websites that check the User-Agent and the HTTP Referer
15. Download files from a password protected sites
16. Fetch pages that are behind a login page. You need to replace and with the actual form fields while the URL should point to the Form Submit (action) page.
Retrieve File Details with wget
17. Find the size of a file without downloading it (look for ContentLength in the response, the size is in bytes)
18. Download a file and display the content on the screen without saving it locally.
19. Know the last modified date of a web page (check the LastModified tag in the HTTP header).
20. Check the links on your website to ensure that they are working. The spider option will not save the pages locally.
Also see: Essential Linux Commands
Wget - How to be nice to the server?
The wget tool is essentially a spider that scrapes / leeches web pages but some web hosts may block these spiders with the robots.txt files. Also, wget will not follow links on web pages that use the rel=nofollow attribute.
You can however force wget to ignore the robots.txt and the nofollow directives by adding the switch ‐‐execute robots=off to all your wget commands. If a web host is blocking wget requests by looking at the User Agent string, you can always fake that with the ‐‐user-agent=Mozilla switch.
The wget command will put additional strain on the site’s server because it will continuously traverse the links and download files. A good scraper would therefore limit the retrieval rate and also include a wait period between consecutive fetch requests to reduce the server load.
In the above example, we have limited the download bandwidth rate to 20 KB/s and the wget utility will wait anywhere between 30s and 90 seconds before retrieving the next resource.
Finally, a little quiz. What do you think this wget command will do?
Looking for something? Find here!
-