aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2020-12-13 19:04:19 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2020-12-13 19:04:19 +0100
commit11f1a2553e49c9ff2235688a41875ff8751517ce (patch)
tree5f19a07de53cf6d7fac73725be06f68fa6fe4737 /coreutils
parent49142d48bd12c87d52e1316050f5cf4749e64e51 (diff)
downloadbusybox-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>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/id.c2
-rw-r--r--coreutils/mkdir.c2
-rw-r--r--coreutils/rmdir.c2
-rw-r--r--coreutils/stat.c2
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 @@
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")