shuf: improve help text
authorBartosz Golaszewski <bartekgola@gmail.com>
Fri, 7 Mar 2014 13:07:35 +0000 (14:07 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 7 Mar 2014 13:07:35 +0000 (14:07 +0100)
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/shuf.c

index 648a4abbb39337b4377cca6c190919176a73ab11..e0c2fbf1f9dfa4f1a776836b1666443de20b23e7 100644 (file)
 //applet:IF_SHUF(APPLET_NOEXEC(shuf, shuf, BB_DIR_USR_BIN, BB_SUID_DROP, shuf))
 
 //usage:#define shuf_trivial_usage
-//usage:       "[-e|-i LO-HI] [-n NUM] [-o FILE] [-z] [FILE|ARG...]"
+//usage:       "[-e|-i L-H] [-n NUM] [-o FILE] [-z] [FILE|ARG...]"
 //usage:#define shuf_full_usage "\n\n"
 //usage:       "Write a random permutation of the input lines to standard output\n"
 //usage:     "\n       -e      Treat each ARG as an input line"
-//usage:     "\n       -i L-H  Treat each number L through H as an input line"
+//usage:     "\n       -i L-H  Treat numbers L-H as an input line"
 //usage:     "\n       -n NUM  Output at most NUM lines"
-//usage:     "\n       -o      Write result to FILE instead of standard output"
+//usage:     "\n       -o FILE Write to FILE instead of standard output"
 //usage:     "\n       -z      End lines with zero byte, not newline"
 
 #include "libbb.h"