diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/comm.c | 4 | ||||
-rw-r--r-- | src/join.c | 1 | ||||
-rw-r--r-- | src/uniq.c | 7 |
3 files changed, 10 insertions, 2 deletions
diff --git a/src/comm.c b/src/comm.c index c60936f4b..3c5b09ad4 100644 --- a/src/comm.c +++ b/src/comm.c @@ -129,6 +129,10 @@ and column three contains lines common to both files.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); + fputs (_("\ +\n\ +Note, comparisons honor the rules specified by `LC_COLLATE'.\n\ +"), stdout); emit_bug_reporting_address (); } exit (status); diff --git a/src/join.c b/src/join.c index 992a357b1..c71669893 100644 --- a/src/join.c +++ b/src/join.c @@ -204,6 +204,7 @@ separated by CHAR.\n\ \n\ Important: FILE1 and FILE2 must be sorted on the join fields.\n\ E.g., use `sort -k 1b,1' if `join' has no options.\n\ +Note, comparisons honor the rules specified by `LC_COLLATE'.\n\ If the input is not sorted and some lines cannot be joined, a\n\ warning message will be given.\n\ "), stdout); diff --git a/src/uniq.c b/src/uniq.c index a3e0fb7b5..249b24ab3 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -135,8 +135,10 @@ Usage: %s [OPTION]... [INPUT [OUTPUT]]\n\ "), program_name); fputs (_("\ -Discard all but one of successive identical lines from INPUT (or\n\ -standard input), writing to OUTPUT (or standard output).\n\ +Filter adjacent matching lines from INPUT (or standard input),\n\ +writing to OUTPUT (or standard output).\n\ +\n\ +With no options, matching lines are merged to the first occurrence.\n\ \n\ "), stdout); fputs (_("\ @@ -170,6 +172,7 @@ characters. Fields are skipped before chars.\n\ \n\ Note: 'uniq' does not detect repeated lines unless they are adjacent.\n\ You may want to sort the input first, or use `sort -u' without `uniq'.\n\ +Also, comparisons honor the rules specified by `LC_COLLATE'.\n\ "), stdout); emit_bug_reporting_address (); } |