diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2008-07-27 17:31:18 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-07-27 22:18:06 +0200 |
commit | cbdcc9fb4ebb49e17244eaa164045b8e04442efd (patch) | |
tree | f4cbdf5f77d78d21af4a1ec4ad8926947e1f91fb /src | |
parent | bee58d8a0400b0303c6dce3873fdf3482de0c110 (diff) | |
download | coreutils-cbdcc9fb4ebb49e17244eaa164045b8e04442efd.tar.xz |
shuf: correctly document --head-count
* src/shuf.c (usage): Correct --help output.
* doc/coreutils.texi: Correct option listing.
* NEWS: Mention correction.
Diffstat (limited to 'src')
-rw-r--r-- | src/shuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shuf.c b/src/shuf.c index 5e07d6e49..977eedc0a 100644 --- a/src/shuf.c +++ b/src/shuf.c @@ -60,7 +60,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ fputs (_("\ -e, --echo treat each ARG as an input line\n\ -i, --input-range=LO-HI treat each number LO through HI as an input line\n\ - -n, --head-lines=LINES output at most LINES lines\n\ + -n, --head-count=COUNT output at most COUNT lines\n\ -o, --output=FILE write result to FILE instead of standard output\n\ --random-source=FILE get random bytes from FILE (default /dev/urandom)\n\ -z, --zero-terminated end lines with 0 byte, not newline\n\ |