aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-06-13 03:12:09 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2021-06-13 03:12:09 +0200
commit1849285a2098b503b829038f00f25abc52dbea6b (patch)
treecd39fc71e17c465b81174b83d64cd05eee2edad3 /coreutils
parent6b6826f0b87b13c5e83786f045b90d703507464e (diff)
downloadbusybox-w32-1849285a2098b503b829038f00f25abc52dbea6b.tar.gz
busybox-w32-1849285a2098b503b829038f00f25abc52dbea6b.tar.bz2
busybox-w32-1849285a2098b503b829038f00f25abc52dbea6b.zip
*: more --help tweaks, mostly expanding ts --help
function old new delta packed_usage 33554 33596 +42 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/touch.c2
-rw-r--r--coreutils/tty.c2
-rw-r--r--coreutils/uname.c4
-rw-r--r--coreutils/yes.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/touch.c b/coreutils/touch.c
index 2b225dd16..ec12eb7cf 100644
--- a/coreutils/touch.c
+++ b/coreutils/touch.c
@@ -31,7 +31,7 @@
31//kbuild:lib-$(CONFIG_TOUCH) += touch.o 31//kbuild:lib-$(CONFIG_TOUCH) += touch.o
32 32
33//usage:#define touch_trivial_usage 33//usage:#define touch_trivial_usage
34//usage: "[-c" IF_FEATURE_TOUCH_SUSV3("am") "]" 34//usage: "[-ch" IF_FEATURE_TOUCH_SUSV3("am") "]"
35//usage: IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") 35//usage: IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]")
36//usage: " FILE..." 36//usage: " FILE..."
37//usage:#define touch_full_usage "\n\n" 37//usage:#define touch_full_usage "\n\n"
diff --git a/coreutils/tty.c b/coreutils/tty.c
index ff6f2bb3b..e448c27ec 100644
--- a/coreutils/tty.c
+++ b/coreutils/tty.c
@@ -21,7 +21,7 @@
21/* http://www.opengroup.org/onlinepubs/9699919799/utilities/tty.html */ 21/* http://www.opengroup.org/onlinepubs/9699919799/utilities/tty.html */
22 22
23//usage:#define tty_trivial_usage 23//usage:#define tty_trivial_usage
24//usage: "" 24//usage: "" IF_INCLUDE_SUSv2("[-s]")
25//usage:#define tty_full_usage "\n\n" 25//usage:#define tty_full_usage "\n\n"
26//usage: "Print file name of stdin's terminal" 26//usage: "Print file name of stdin's terminal"
27//usage: IF_INCLUDE_SUSv2( "\n" 27//usage: IF_INCLUDE_SUSv2( "\n"
diff --git a/coreutils/uname.c b/coreutils/uname.c
index 2a1602b4c..da785ab4c 100644
--- a/coreutils/uname.c
+++ b/coreutils/uname.c
@@ -79,13 +79,13 @@
79//usage:#define uname_full_usage "\n\n" 79//usage:#define uname_full_usage "\n\n"
80//usage: "Print system information\n" 80//usage: "Print system information\n"
81//usage: "\n -a Print all" 81//usage: "\n -a Print all"
82//usage: "\n -m The machine (hardware) type" 82//usage: "\n -m Machine (hardware) type"
83//usage: "\n -n Hostname" 83//usage: "\n -n Hostname"
84//usage: "\n -r Kernel release" 84//usage: "\n -r Kernel release"
85//usage: "\n -s Kernel name (default)" 85//usage: "\n -s Kernel name (default)"
86//usage: "\n -p Processor type" 86//usage: "\n -p Processor type"
87//usage: "\n -v Kernel version" 87//usage: "\n -v Kernel version"
88//usage: "\n -i The hardware platform" 88//usage: "\n -i Hardware platform"
89//usage: "\n -o OS name" 89//usage: "\n -o OS name"
90//usage: 90//usage:
91//usage:#define uname_example_usage 91//usage:#define uname_example_usage
diff --git a/coreutils/yes.c b/coreutils/yes.c
index 0ad25926f..161db82c0 100644
--- a/coreutils/yes.c
+++ b/coreutils/yes.c
@@ -27,7 +27,7 @@
27//usage:#define yes_trivial_usage 27//usage:#define yes_trivial_usage
28//usage: "[STRING]" 28//usage: "[STRING]"
29//usage:#define yes_full_usage "\n\n" 29//usage:#define yes_full_usage "\n\n"
30//usage: "Repeatedly output a line with STRING, or 'y'" 30//usage: "Repeatedly print a line with STRING, or 'y'"
31 31
32#include "libbb.h" 32#include "libbb.h"
33 33