diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-05 21:45:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-05 21:45:54 +0000 |
commit | 79757c9c37beab0032bc065b10bf84d4afe2b500 (patch) | |
tree | ec753d3a25083e41816993be04ca9377160ff0e3 /applets | |
parent | ea9065072c91b6397cb3cb597f248d23415169f0 (diff) |
A patch from Dmitry Zakharov <dmit@crp.bank.gov.ua> which adds
- support for ftp downloads
- HTTP basic authentication support (as an optional feature)
- handling of http redirections
- protocol version changed to 1.0 (to stop servers from requesting
chunked encoding)
- bugfix: in the case when content-length not given, wget didn't
download anything
- when attempting to continue an aborted download but server doesn't
support restarts, reopen output file in write mode
- changed assumption that existing file should restart an aborted
download. Now the user must explicitly specify this with -c
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applets/usage.h b/applets/usage.h index abd0156ad..bf2f7bd63 100644 --- a/applets/usage.h +++ b/applets/usage.h @@ -1718,9 +1718,10 @@ #define wget_trivial_usage \ "[-c] [-O file] url" #define wget_full_usage \ - "wget retrieves files via HTTP\n\n" \ + "wget retrieves files via HTTP or FTP\n\n" \ "Options:\n" \ "\t-c\tcontinue retrieval of aborted transfers\n" \ + "\t-q\tquiet mode - do not print\n" \ "\t-O\tsave to filename ('-' for stdout)" #define which_trivial_usage \ |