[git commit] shuf: trim help text

Denys Vlasenko vda.linux at googlemail.com
Fri Mar 7 13:41:53 UTC 2014


commit: http://git.busybox.net/busybox/commit/?id=69f9567de28976cfbc7b216c46aa391ce82bd3b7
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 coreutils/shuf.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/coreutils/shuf.c b/coreutils/shuf.c
index d1cd39d..6d0a68f 100644
--- a/coreutils/shuf.c
+++ b/coreutils/shuf.c
@@ -19,11 +19,11 @@
 //usage:#define shuf_trivial_usage
 //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 numbers L-H as an input line"
+//usage:       "Randomly permute lines\n"
+//usage:     "\n	-e	Treat ARGs as lines"
+//usage:     "\n	-i L-H	Treat numbers L-H as lines"
 //usage:     "\n	-n NUM	Output at most NUM lines"
-//usage:     "\n	-o FILE	Write to FILE instead of standard output"
+//usage:     "\n	-o FILE	Write to FILE, not standard output"
 //usage:     "\n	-z	End lines with zero byte, not newline"
 
 #include "libbb.h"


More information about the busybox-cvs mailing list