diff options
-rw-r--r-- | wget.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -12,3 +12,11 @@ Defaults to 5 levels deep. wget -r <url> wget -r -l <depth> <url> + +Accept or reject links with patterns (useful to download files from a file +listing, where the files follow a naming pattern). + + wget -r -A <file1,file2> # can use *, ?, [] + wget -r -R <file1,file2> # can use *, ?, [] + wget -r --accept-regex <regex> + wget -r --reject-regex <regex> |