aboutsummaryrefslogtreecommitdiff
path: root/coreutils/comm.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/comm.c')
-rw-r--r--coreutils/comm.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/coreutils/comm.c b/coreutils/comm.c
index c04da1896..7da6b25f9 100644
--- a/coreutils/comm.c
+++ b/coreutils/comm.c
@@ -7,6 +7,15 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree. 7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */ 8 */
9 9
10//usage:#define comm_trivial_usage
11//usage: "[-123] FILE1 FILE2"
12//usage:#define comm_full_usage "\n\n"
13//usage: "Compare FILE1 with FILE2\n"
14//usage: "\nOptions:"
15//usage: "\n -1 Suppress lines unique to FILE1"
16//usage: "\n -2 Suppress lines unique to FILE2"
17//usage: "\n -3 Suppress lines common to both files"
18
10#include "libbb.h" 19#include "libbb.h"
11 20
12#define COMM_OPT_1 (1 << 0) 21#define COMM_OPT_1 (1 << 0)