From: Jim Meyering Date: Tue, 18 Dec 2007 20:14:49 +0000 (+0100) Subject: * src/uniq.c (usage): Say "key-selection", not "field-selection". X-Git-Tag: v6.9.92~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbc55e488dae92938772f2c523f81f427ad66f9e;p=thirdparty%2Fcoreutils.git * src/uniq.c (usage): Say "key-selection", not "field-selection". Quote example commands consistently. --- diff --git a/ChangeLog b/ChangeLog index 8d5c1ab84c..e940e635ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * src/uniq.c (usage): Note that sorting uniq's input is often useful. Suggested by Eric Blake. + (usage): Say "key-selection", not "field-selection". + Quote example commands consistently. 2007-12-15 Jim Meyering diff --git a/src/uniq.c b/src/uniq.c index 5fcbed9a42..b5c92e0789 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -171,9 +171,9 @@ Fields are skipped before chars.\n\ fputs (_("\ \n\ Note: while uniq can be useful even with unsorted input, in most applications\n\ -the input is sorted in a manner consistent with field-selection options.\n\ +the input is sorted in a manner consistent with key-selection options.\n\ E.g., use `sort' if `uniq' uses no such option (or simply use `sort -u');\n\ -use `sort -k 3b' with uniq -f2.\n\ +use `sort -k 3b' with `uniq -f2'.\n\ "), stdout); emit_bug_reporting_address (); }