diff options
author | Denys Vlasenko | 2020-12-18 04:12:51 +0100 |
---|---|---|
committer | Denys Vlasenko | 2020-12-18 04:12:51 +0100 |
commit | a2f18d950a1a94e22fec78ee2d57f5cd3542551a (patch) | |
tree | 0e2540425675187e037e09cd0bf59c1740e91b49 /networking/wget.c | |
parent | 15733cb48e570716cad6ece2d752507ecd767131 (diff) | |
download | busybox-a2f18d950a1a94e22fec78ee2d57f5cd3542551a.zip busybox-a2f18d950a1a94e22fec78ee2d57f5cd3542551a.tar.gz |
help text tweaks
function old new delta
packed_usage 33570 33502 -68
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/networking/wget.c b/networking/wget.c index ff0df4c..e660c27 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -128,19 +128,14 @@ //usage:#define wget_trivial_usage //usage: IF_FEATURE_WGET_LONG_OPTIONS( -//usage: "[-c|--continue] [--spider] [-q|--quiet] [-O|--output-document FILE]\n" -//usage: " [-o|--output-file FILE] [--header 'header: value'] [-Y|--proxy on/off]\n" -//usage: IF_FEATURE_WGET_OPENSSL( -//usage: " [--no-check-certificate]\n" -//usage: ) +//usage: "[-cqS] [--spider] [-O FILE] [-o LOGFILE] [--header 'HEADER: VALUE'] [-Y on/off]\n" /* Since we ignore these opts, we don't show them in --help */ /* //usage: " [--no-cache] [--passive-ftp] [-t TRIES]" */ /* //usage: " [-nv] [-nc] [-nH] [-np]" */ -//usage: " [-P DIR] [-S|--server-response] [-U|--user-agent AGENT]" IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." +//usage: " "IF_FEATURE_WGET_OPENSSL("[--no-check-certificate] ")"[-P DIR] [-U AGENT]"IF_FEATURE_WGET_TIMEOUT(" [-T SEC]")" URL..." //usage: ) //usage: IF_NOT_FEATURE_WGET_LONG_OPTIONS( -//usage: "[-cq] [-O FILE] [-o FILE] [-Y on/off] [-P DIR] [-S] [-U AGENT]" -//usage: IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." +//usage: "[-cqS] [-O FILE] [-o LOGFILE] [-Y on/off] [-P DIR] [-U AGENT]"IF_FEATURE_WGET_TIMEOUT(" [-T SEC]")" URL..." //usage: ) //usage:#define wget_full_usage "\n\n" //usage: "Retrieve files via HTTP or FTP\n" @@ -158,7 +153,7 @@ //usage: "\n -T SEC Network read timeout is SEC seconds" //usage: ) //usage: "\n -O FILE Save to FILE ('-' for stdout)" -//usage: "\n -o FILE Log messages to FILE" +//usage: "\n -o LOGFILE Log messages to FILE" //usage: "\n -U STR Use STR for User-Agent header" //usage: "\n -Y on/off Use proxy" |