You want to download an entire website togethered with its contents at the same time? Confused to use what? Used wget, a free open source application to get some file through HTTP, HTTPS, and FTP. This application doesn’t need an user interface to run. Simply type this lines below in terminal :
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains website.org \
--no-parent \
www.website.org/tutorials/html/
Information from option-option used above is as follows:
- --recursive: download entire website recursively.
- --domains website.org: only download in domain domain website.org.
- --no-parent: won't download directory above tutorials/html/.
- --page-requisites: Got all the elements that build a page (images, CSS, etc).
- --html-extension: save file with html extension.
- --convert-links: convert links so we can display the site offline
- --restrict-file-names=windows: change file name so it can be opened in Windows
- --no-clobber: do not overwrite existing files. (useful when download stopped and resumed)
Maybe you like this post too :
[Tutorial] Update Facebook Status From Pidgin
Recent Top Story :
Recent Search :
Posted in Tutorial | Comments (2)

July 15th, 2009 at 3:24 am
Hello, thank you for the great tutorial. It helped me improving my skills greatly. It is always excellent to get some formidable inspiration and I hope to read more of such articles here soon because nobody will ever stop learning new things. Props
Reply
July 8th, 2010 at 7:17 pm
nice post i really like it
Reply