Difference between revisions of "Wget"

From Alessandro's Wiki
 
Line 2: Line 2:
  wget --limit-rate=60k  
  wget --limit-rate=60k  


* Continuare a scaricare un file da dove lo si aveva lasciato:
* resume downloading (Continue a to download an incomplete file):
  wget -c  
  wget -c http://www.yourdomain.com/bigfile.bin


* Scaricare nel file...
* Download into filename...
  wget -O FILE
  wget http://www.example.com -O '''index.html'''
 
* Mirror an entire website
wget --mirror –w 2 –p --HTML-extension –-convert-links –P local_htdocs/ http://www.yourdomain.com

Revision as of 21:32, 30 November 2010

  • Limitare la banda da utilizzare per scaricare.
wget --limit-rate=60k 
  • resume downloading (Continue a to download an incomplete file):
wget -c http://www.yourdomain.com/bigfile.bin
  • Download into filename...
wget http://www.example.com -O index.html
  • Mirror an entire website
wget --mirror –w 2 –p --HTML-extension –-convert-links –P local_htdocs/ http://www.yourdomain.com