diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-21 19:45:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-21 19:45:06 +0000 |
commit | 8071c021311afb592bb6710b841350018ba97b9d (patch) | |
tree | 8c4977f9b0a6a58e97813de86bcaf2196eb833f2 /applets | |
parent | ceeff7381929930fe8d7e33543e285d5fdcf1c68 (diff) |
Add wget -P support, finishing off bug #1176
-Erik
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 acba3677c..9fd3a2e1c 100644 --- a/applets/usage.h +++ b/applets/usage.h @@ -1729,12 +1729,13 @@ " 31 46 1365 /etc/passwd\n" #define wget_trivial_usage \ - "[-c|--continue] [-q|--quiet] [-O|--output-document file] [--header 'header: value'] url" + "[-c|--continue] [-q|--quiet] [-O|--output-document file]\n\t[--header 'header: value'] [-P DIR] url" #define wget_full_usage \ "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-P\tSet directory prefix to DIR\n" \ "\t-O\tsave to filename ('-' for stdout)" #define which_trivial_usage \ |