aquaballoon

Wget

Aug 1st, 2011
980
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.55 KB | None | 0 0
  1. Download Entire Folder using Wget Command in Linux
  2.  
  3.  
  4. $ wget -m http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/
  5.  
  6. -m, –mirror
  7.     shortcut for -N -r -l inf –no-remove-listing.
  8.  
  9. $ wget -H -r --level=1 -k -p http://www.tldp.org/HOWTO/Serial-Programming-HOWTO/
  10.  
  11. -r, –recursive
  12.     Specify recursive download.
  13. -l, –level=NUMBER
  14.     Maximum recursion depth (inf or 0 for infinite).
  15. -k, –convert-links
  16.     Make links in downloaded HTML point to local files.
  17. -p, –page-requisites
  18.     Get all images, etc. needed to display HTML page.
Advertisement
Add Comment
Please, Sign In to add comment