Difference between revisions of "Wget: Download files recursively from a location"
Jump to navigation
Jump to search
(Created page with "== Download files/directory from a location (recursively) == <syntaxhighlight> wget -r --no-parent --reject "index.html*" -nH http://xyz.com/dir/dir1 </syntaxhighlight>") |
|||
| Line 1: | Line 1: | ||
== Download files/directory from a location (recursively) == | == Download files/directory from a location (recursively) == | ||
| − | <syntaxhighlight> | + | <syntaxhighlight> wget -r --no-parent --reject "index.html*" -nH http://xyz.com/dir/dir1 </syntaxhighlight> |
| − | wget -r --no-parent --reject "index.html*" -nH http://xyz.com/dir/dir1 | ||
| − | </syntaxhighlight> | ||
Revision as of 15:49, 1 November 2012
Download files/directory from a location (recursively)
wget -r --no-parent --reject "index.html*" -nH http://xyz.com/dir/dir1