aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartekgola@gmail.com>2014-03-07 14:07:35 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2014-03-07 14:07:35 +0100
commit190693ced1bb82d96c5dedbe850840aae9246a5c (patch)
treec910be1acacc635d111fee4bfc490e4bfd81ef04 /coreutils
parent58adbb5505d0c643c18d956934aa8afa18e612eb (diff)
downloadbusybox-w32-190693ced1bb82d96c5dedbe850840aae9246a5c.tar.gz
busybox-w32-190693ced1bb82d96c5dedbe850840aae9246a5c.tar.bz2
busybox-w32-190693ced1bb82d96c5dedbe850840aae9246a5c.zip
shuf: improve help text
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/shuf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/shuf.c b/coreutils/shuf.c
index 648a4abbb..e0c2fbf1f 100644
--- a/coreutils/shuf.c
+++ b/coreutils/shuf.c
@@ -17,13 +17,13 @@
17//applet:IF_SHUF(APPLET_NOEXEC(shuf, shuf, BB_DIR_USR_BIN, BB_SUID_DROP, shuf)) 17//applet:IF_SHUF(APPLET_NOEXEC(shuf, shuf, BB_DIR_USR_BIN, BB_SUID_DROP, shuf))
18 18
19//usage:#define shuf_trivial_usage 19//usage:#define shuf_trivial_usage
20//usage: "[-e|-i LO-HI] [-n NUM] [-o FILE] [-z] [FILE|ARG...]" 20//usage: "[-e|-i L-H] [-n NUM] [-o FILE] [-z] [FILE|ARG...]"
21//usage:#define shuf_full_usage "\n\n" 21//usage:#define shuf_full_usage "\n\n"
22//usage: "Write a random permutation of the input lines to standard output\n" 22//usage: "Write a random permutation of the input lines to standard output\n"
23//usage: "\n -e Treat each ARG as an input line" 23//usage: "\n -e Treat each ARG as an input line"
24//usage: "\n -i L-H Treat each number L through H as an input line" 24//usage: "\n -i L-H Treat numbers L-H as an input line"
25//usage: "\n -n NUM Output at most NUM lines" 25//usage: "\n -n NUM Output at most NUM lines"
26//usage: "\n -o Write result to FILE instead of standard output" 26//usage: "\n -o FILE Write to FILE instead of standard output"
27//usage: "\n -z End lines with zero byte, not newline" 27//usage: "\n -z End lines with zero byte, not newline"
28 28
29#include "libbb.h" 29#include "libbb.h"