Changes

Jump to navigation Jump to search
207 bytes added ,  17:39, 24 May 2017
Line 68: Line 68:     
==== wget ====
 
==== wget ====
Network pull tool to copy websites or data
+
Network pull tool to copy Websites or Data
 
<pre>
 
<pre>
 
wget -O LocalImageName.jpg "http://domainname.info/image.jpg" --tries=2 --timeout=10 #try to pull only twice then stop, and stop after 10 sec of Timouts
 
wget -O LocalImageName.jpg "http://domainname.info/image.jpg" --tries=2 --timeout=10 #try to pull only twice then stop, and stop after 10 sec of Timouts
 
</pre>
 
</pre>
 +
To Mirror complete Webspaces if allowed by robots.txt
 +
<pre>
 +
wget -m wget http://domainname.info/ --tries=2 --timeout=10
 +
</pre>
 +
This command can create a locel Offline Copy of a Site include Images and Links

Navigation menu