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 /coreutils | |
parent | 49142d48bd12c87d52e1316050f5cf4749e64e51 (diff) |
help text tweaks
function old new delta
packed_usage 33547 33545 -2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-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 |
4 files changed, 4 insertions, 4 deletions
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 @@ /* BB_AUDIT SUSv3 compliant. */ //usage:#define id_trivial_usage -//usage: "[OPTIONS] [USER]" +//usage: "[-ugGnr"IF_SELINUX("Z")"] [USER]" //usage:#define id_full_usage "\n\n" //usage: "Print information about USER or the current user\n" //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 @@ /* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */ //usage:#define mkdir_trivial_usage -//usage: "[OPTIONS] DIRECTORY..." +//usage: "[-m MODE] [-p] DIRECTORY..." //usage:#define mkdir_full_usage "\n\n" //usage: "Create DIRECTORY\n" //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 @@ /* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */ //usage:#define rmdir_trivial_usage -//usage: "[OPTIONS] DIRECTORY..." +//usage: "[-p] DIRECTORY..." //usage:#define rmdir_full_usage "\n\n" //usage: "Remove DIRECTORY if it is empty\n" //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 @@ //kbuild:lib-$(CONFIG_STAT) += stat.o //usage:#define stat_trivial_usage -//usage: "[OPTIONS] FILE..." +//usage: "[-lt"IF_FEATURE_STAT_FILESYSTEM("f")"] "IF_FEATURE_STAT_FORMAT("[-c FMT] ")"FILE..." //usage:#define stat_full_usage "\n\n" //usage: "Display file" //usage: IF_FEATURE_STAT_FILESYSTEM(" (default) or filesystem") |