diff options
author | Pádraig Brady <P@draigBrady.com> | 2013-08-03 10:36:39 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-08-03 10:36:39 +0100 |
commit | 57b6bdff7e277c6286afd439bb276049dd9ef6ea (patch) | |
tree | a7f6c1e949234b06134cafd0b4cdabcc68f620fc /src | |
parent | dffaa8db2d4990e61df7016b8cd8918c850e5b32 (diff) | |
download | coreutils-57b6bdff7e277c6286afd439bb276049dd9ef6ea.tar.xz |
doc: clarify that uniq -d outputs a single entry per group
* src/uniq.c (usage): Clarify the -d option.
Fixes http://bugs.gnu.org/14996
Diffstat (limited to 'src')
-rw-r--r-- | src/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uniq.c b/src/uniq.c index 835b5b194..530f71641 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -182,7 +182,7 @@ With no options, matching lines are merged to the first occurrence.\n\ fputs (_("\ -c, --count prefix lines by the number of occurrences\n\ - -d, --repeated only print duplicate lines\n\ + -d, --repeated only print duplicate lines, one for each group\n\ "), stdout); fputs (_("\ -D, --all-repeated[=METHOD] print all duplicate lines\n\ |