1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

(usage): Tell what comm does when there are no options.

Reword in terms of FILE1 and FILE2 rather than `left file' and
`right file'.  Suggestion from Dan Jacobson.
This commit is contained in:
Jim Meyering
2004-02-21 09:21:15 +00:00
parent 47c4268b6b
commit 3fd433e9d3

View File

@@ -70,14 +70,22 @@ usage (int status)
else
{
printf (_("\
Usage: %s [OPTION]... LEFT_FILE RIGHT_FILE\n\
Usage: %s [OPTION]... FILE1 FILE2\n\
"),
program_name);
fputs (_("\
Compare sorted files LEFT_FILE and RIGHT_FILE line by line.\n\
Compare sorted files FILE1 and FILE2 line by line.\n\
"), stdout);
fputs (_("\
\n\
-1 suppress lines unique to left file\n\
-2 suppress lines unique to right file\n\
With no options, produce three-column output. Column one contains\n\
lines unique to FILE1, column two contains lines unique to FILE2,\n\
and column three contains lines common to both files.\n\
"), stdout);
fputs (_("\
\n\
-1 suppress lines unique to FILE1\n\
-2 suppress lines unique to FILE2\n\
-3 suppress lines that appear in both files\n\
"), stdout);
fputs (HELP_OPTION_DESCRIPTION, stdout);