diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-13 19:04:19 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-13 19:04:19 +0100 |
commit | 11f1a2553e49c9ff2235688a41875ff8751517ce (patch) | |
tree | 5f19a07de53cf6d7fac73725be06f68fa6fe4737 | |
parent | 49142d48bd12c87d52e1316050f5cf4749e64e51 (diff) | |
download | busybox-w32-11f1a2553e49c9ff2235688a41875ff8751517ce.tar.gz busybox-w32-11f1a2553e49c9ff2235688a41875ff8751517ce.tar.bz2 busybox-w32-11f1a2553e49c9ff2235688a41875ff8751517ce.zip |
help text tweaks
function old new delta
packed_usage 33547 33545 -2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | archival/ar.c | 2 | ||||
-rw-r--r-- | archival/bzip2.c | 2 | ||||
-rw-r--r-- | coreutils/id.c | 2 | ||||
-rw-r--r-- | coreutils/mkdir.c | 2 | ||||
-rw-r--r-- | coreutils/rmdir.c | 2 | ||||
-rw-r--r-- | coreutils/stat.c | 2 | ||||
-rw-r--r-- | loginutils/passwd.c | 2 | ||||
-rw-r--r-- | miscutils/crond.c | 2 | ||||
-rw-r--r-- | miscutils/mt.c | 2 | ||||
-rw-r--r-- | networking/ifconfig.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/archival/ar.c b/archival/ar.c index 2839d85d5..af9793f23 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -49,7 +49,7 @@ | |||
49 | //kbuild:lib-$(CONFIG_AR) += ar.o | 49 | //kbuild:lib-$(CONFIG_AR) += ar.o |
50 | 50 | ||
51 | //usage:#define ar_trivial_usage | 51 | //usage:#define ar_trivial_usage |
52 | //usage: "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES" | 52 | //usage: "[-optxv] ARCHIVE FILES" |
53 | //usage:#define ar_full_usage "\n\n" | 53 | //usage:#define ar_full_usage "\n\n" |
54 | //usage: "Extract or list FILES from an ar archive\n" | 54 | //usage: "Extract or list FILES from an ar archive\n" |
55 | //usage: "\n -o Preserve original dates" | 55 | //usage: "\n -o Preserve original dates" |
diff --git a/archival/bzip2.c b/archival/bzip2.c index d0390a92a..ac5db0880 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c | |||
@@ -50,7 +50,7 @@ | |||
50 | //kbuild:lib-$(CONFIG_BZIP2) += bzip2.o | 50 | //kbuild:lib-$(CONFIG_BZIP2) += bzip2.o |
51 | 51 | ||
52 | //usage:#define bzip2_trivial_usage | 52 | //usage:#define bzip2_trivial_usage |
53 | //usage: "[OPTIONS] [FILE]..." | 53 | //usage: "[-cfk" IF_FEATURE_BZIP2_DECOMPRESS("dt") "123456789] [FILE]..." |
54 | //usage:#define bzip2_full_usage "\n\n" | 54 | //usage:#define bzip2_full_usage "\n\n" |
55 | //usage: "Compress FILEs (or stdin) with bzip2 algorithm\n" | 55 | //usage: "Compress FILEs (or stdin) with bzip2 algorithm\n" |
56 | //usage: "\n -1..9 Compression level" | 56 | //usage: "\n -1..9 Compression level" |
diff --git a/coreutils/id.c b/coreutils/id.c index f20cd7d09..78d5f2a50 100644 --- a/coreutils/id.c +++ b/coreutils/id.c | |||
@@ -33,7 +33,7 @@ | |||
33 | /* BB_AUDIT SUSv3 compliant. */ | 33 | /* BB_AUDIT SUSv3 compliant. */ |
34 | 34 | ||
35 | //usage:#define id_trivial_usage | 35 | //usage:#define id_trivial_usage |
36 | //usage: "[OPTIONS] [USER]" | 36 | //usage: "[-ugGnr"IF_SELINUX("Z")"] [USER]" |
37 | //usage:#define id_full_usage "\n\n" | 37 | //usage:#define id_full_usage "\n\n" |
38 | //usage: "Print information about USER or the current user\n" | 38 | //usage: "Print information about USER or the current user\n" |
39 | //usage: IF_SELINUX( | 39 | //usage: IF_SELINUX( |
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 0ee1d1f72..d5e0f512b 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -27,7 +27,7 @@ | |||
27 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */ | 27 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */ |
28 | 28 | ||
29 | //usage:#define mkdir_trivial_usage | 29 | //usage:#define mkdir_trivial_usage |
30 | //usage: "[OPTIONS] DIRECTORY..." | 30 | //usage: "[-m MODE] [-p] DIRECTORY..." |
31 | //usage:#define mkdir_full_usage "\n\n" | 31 | //usage:#define mkdir_full_usage "\n\n" |
32 | //usage: "Create DIRECTORY\n" | 32 | //usage: "Create DIRECTORY\n" |
33 | //usage: "\n -m MODE Mode" | 33 | //usage: "\n -m MODE Mode" |
diff --git a/coreutils/rmdir.c b/coreutils/rmdir.c index 5092a5dfc..addf41188 100644 --- a/coreutils/rmdir.c +++ b/coreutils/rmdir.c | |||
@@ -20,7 +20,7 @@ | |||
20 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */ | 20 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */ |
21 | 21 | ||
22 | //usage:#define rmdir_trivial_usage | 22 | //usage:#define rmdir_trivial_usage |
23 | //usage: "[OPTIONS] DIRECTORY..." | 23 | //usage: "[-p] DIRECTORY..." |
24 | //usage:#define rmdir_full_usage "\n\n" | 24 | //usage:#define rmdir_full_usage "\n\n" |
25 | //usage: "Remove DIRECTORY if it is empty\n" | 25 | //usage: "Remove DIRECTORY if it is empty\n" |
26 | //usage: "\n -p Include parents" | 26 | //usage: "\n -p Include parents" |
diff --git a/coreutils/stat.c b/coreutils/stat.c index ee5e03edd..073b2c67b 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -40,7 +40,7 @@ | |||
40 | //kbuild:lib-$(CONFIG_STAT) += stat.o | 40 | //kbuild:lib-$(CONFIG_STAT) += stat.o |
41 | 41 | ||
42 | //usage:#define stat_trivial_usage | 42 | //usage:#define stat_trivial_usage |
43 | //usage: "[OPTIONS] FILE..." | 43 | //usage: "[-lt"IF_FEATURE_STAT_FILESYSTEM("f")"] "IF_FEATURE_STAT_FORMAT("[-c FMT] ")"FILE..." |
44 | //usage:#define stat_full_usage "\n\n" | 44 | //usage:#define stat_full_usage "\n\n" |
45 | //usage: "Display file" | 45 | //usage: "Display file" |
46 | //usage: IF_FEATURE_STAT_FILESYSTEM(" (default) or filesystem") | 46 | //usage: IF_FEATURE_STAT_FILESYSTEM(" (default) or filesystem") |
diff --git a/loginutils/passwd.c b/loginutils/passwd.c index 770acf58a..acc942275 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c | |||
@@ -28,7 +28,7 @@ | |||
28 | //kbuild:lib-$(CONFIG_PASSWD) += passwd.o | 28 | //kbuild:lib-$(CONFIG_PASSWD) += passwd.o |
29 | 29 | ||
30 | //usage:#define passwd_trivial_usage | 30 | //usage:#define passwd_trivial_usage |
31 | //usage: "[OPTIONS] [USER]" | 31 | //usage: "[-a ALG] [-dlu] [USER]" |
32 | //usage:#define passwd_full_usage "\n\n" | 32 | //usage:#define passwd_full_usage "\n\n" |
33 | //usage: "Change USER's password (default: current user)" | 33 | //usage: "Change USER's password (default: current user)" |
34 | //usage: "\n" | 34 | //usage: "\n" |
diff --git a/miscutils/crond.c b/miscutils/crond.c index fb3adc180..b74427351 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c | |||
@@ -63,7 +63,7 @@ | |||
63 | //kbuild:lib-$(CONFIG_CROND) += crond.o | 63 | //kbuild:lib-$(CONFIG_CROND) += crond.o |
64 | 64 | ||
65 | //usage:#define crond_trivial_usage | 65 | //usage:#define crond_trivial_usage |
66 | //usage: "-fbS -l N " IF_FEATURE_CROND_D("-d N ") "-L LOGFILE -c DIR" | 66 | //usage: "[-fbS] [-l N] " IF_FEATURE_CROND_D("[-d N] ") "[-L LOGFILE] [-c DIR]" |
67 | //usage:#define crond_full_usage "\n\n" | 67 | //usage:#define crond_full_usage "\n\n" |
68 | //usage: " -f Foreground" | 68 | //usage: " -f Foreground" |
69 | //usage: "\n -b Background (default)" | 69 | //usage: "\n -b Background (default)" |
diff --git a/miscutils/mt.c b/miscutils/mt.c index dbb8c13ad..1a4214664 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -15,7 +15,7 @@ | |||
15 | //kbuild:lib-$(CONFIG_MT) += mt.o | 15 | //kbuild:lib-$(CONFIG_MT) += mt.o |
16 | 16 | ||
17 | //usage:#define mt_trivial_usage | 17 | //usage:#define mt_trivial_usage |
18 | //usage: "[-f device] opcode value" | 18 | //usage: "[-f DEVICE] OPCODE VALUE" |
19 | //usage:#define mt_full_usage "\n\n" | 19 | //usage:#define mt_full_usage "\n\n" |
20 | //usage: "Control magnetic tape drive operation\n" | 20 | //usage: "Control magnetic tape drive operation\n" |
21 | //usage: "\n" | 21 | //usage: "\n" |
diff --git a/networking/ifconfig.c b/networking/ifconfig.c index c3e448be0..9ee232a66 100644 --- a/networking/ifconfig.c +++ b/networking/ifconfig.c | |||
@@ -76,7 +76,7 @@ | |||
76 | //kbuild:lib-$(CONFIG_IFCONFIG) += ifconfig.o interface.o | 76 | //kbuild:lib-$(CONFIG_IFCONFIG) += ifconfig.o interface.o |
77 | 77 | ||
78 | //usage:#define ifconfig_trivial_usage | 78 | //usage:#define ifconfig_trivial_usage |
79 | //usage: IF_FEATURE_IFCONFIG_STATUS("[-a]") " interface [address]" | 79 | //usage: IF_FEATURE_IFCONFIG_STATUS("[-a]") " [IFACE] [ADDRESS]" |
80 | //usage:#define ifconfig_full_usage "\n\n" | 80 | //usage:#define ifconfig_full_usage "\n\n" |
81 | //usage: "Configure a network interface\n" | 81 | //usage: "Configure a network interface\n" |
82 | //usage: "\n" | 82 | //usage: "\n" |