2015-10-16

[SOLVED]Download Entire Folder using Wget Command in Linux

9:19 10/04/2015
wget -r -np http://http.us.debian.org/debian/pool/main/z/
or
wget -nH --cut-dirs=3 -r -np http://http.us.debian.org/debian/pool/main/z/


-r, –recursive
    Specify recursive download.
-l, –level=NUMBER
    Maximum recursion depth (inf or 0 for infinite).
-k, –convert-links
    Make links in downloaded HTML point to local files.
-p, –page-requisites
    Get all images, etc. needed to display HTML page.    
-m, –mirror
    shortcut for -N -r -l inf –no-remove-listing.

No comments:

Post a Comment