I have tried WebHTTrack Website Copier . It doesn't work accurately. Is there an alternate way to do it? Thanks
Asked
Active
Viewed 1.4k times
1 Answers
19
Simplest way to do it is to open a Terminal window and type:
wget -mkEpnp http://example.org
or a detailed version
wget --mirror --convert-links --adjust-extension --page-requisites
--no-parent http://example.org
You can find more details here: Make Offline Mirror of a Site using wget
| guyrutenberg.com

ipse lute
- 2,584
-
2Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Videonauth Jun 12 '16 at 18:58
-
This is the most simple way i found it yet. " wget -m -k -K -E http://url/of/web/site " – akgnitd Mar 29 '18 at 07:25
-