How to Use Wget to Download Manual from Website

Most of the time, we would prefer to read manual offline instead of browsing online, sometime we do not have internet access, and in the boredom, we can read the manual OFFLINE! Example below will show you how to grab the manual online to your machine.

Using wget to Download Website for Offline Reading

If you have wget installed on your machine, you can do the command below to download a website for offline read.


shell> wget --no-parent --mirror -p --convert-links -P ~/Documents/local-browsing http://www.some-website.com/howto/

Above command will download the entire website into your machine in your home directory Document/local-browsing. Now you can read while you are offline!