diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-03-07 14:41:53 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-03-07 14:41:53 +0100 |
commit | 69f9567de28976cfbc7b216c46aa391ce82bd3b7 (patch) | |
tree | 0eada7398a09b82fff63f417f2e709fe2e9e12a4 /coreutils | |
parent | 102f0d0d073c4781b5a58f679bdfd0999eea5e71 (diff) | |
download | busybox-w32-69f9567de28976cfbc7b216c46aa391ce82bd3b7.tar.gz busybox-w32-69f9567de28976cfbc7b216c46aa391ce82bd3b7.tar.bz2 busybox-w32-69f9567de28976cfbc7b216c46aa391ce82bd3b7.zip |
shuf: trim help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/shuf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/shuf.c b/coreutils/shuf.c index d1cd39db7..6d0a68fc1 100644 --- a/coreutils/shuf.c +++ b/coreutils/shuf.c | |||
@@ -19,11 +19,11 @@ | |||
19 | //usage:#define shuf_trivial_usage | 19 | //usage:#define shuf_trivial_usage |
20 | //usage: "[-e|-i L-H] [-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: "Randomly permute lines\n" |
23 | //usage: "\n -e Treat each ARG as an input line" | 23 | //usage: "\n -e Treat ARGs as lines" |
24 | //usage: "\n -i L-H Treat numbers L-H as an input line" | 24 | //usage: "\n -i L-H Treat numbers L-H as lines" |
25 | //usage: "\n -n NUM Output at most NUM lines" | 25 | //usage: "\n -n NUM Output at most NUM lines" |
26 | //usage: "\n -o FILE Write to FILE instead of standard output" | 26 | //usage: "\n -o FILE Write to FILE, not 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" |