aboutsummaryrefslogtreecommitdiff
path: root/coreutils/comm.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/comm.c')
-rw-r--r--coreutils/comm.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/coreutils/comm.c b/coreutils/comm.c
index cd450950b..b6a127809 100644
--- a/coreutils/comm.c
+++ b/coreutils/comm.c
@@ -6,6 +6,16 @@
6 * 6 *
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//config:config COMM
10//config: bool "comm"
11//config: default y
12//config: help
13//config: comm is used to compare two files line by line and return
14//config: a three-column output.
15
16//applet:IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP))
17
18//kbuild:lib-$(CONFIG_COMM) += comm.o
9 19
10//usage:#define comm_trivial_usage 20//usage:#define comm_trivial_usage
11//usage: "[-123] FILE1 FILE2" 21//usage: "[-123] FILE1 FILE2"