|
NAME
SYNOPSIS
DESCRIPTIONThe The filename ``-'' means the standard input. The following options are available:
Each column will have a number of tab characters prepended to it equal to the number of lower numbered columns that are being printed. For example, if column number two is being suppressed, lines printed in column number one will not have any tabs preceding them, and lines printed in column number three will have one. The ENVIRONMENTThe EXIT STATUSThe EXAMPLESAssuming a file named example.txt with the following contents: a b c d Show lines only in example.txt, lines only in stdin and common lines: $ echo -e "B\nc" | comm example.txt -
B
a
b
c
d
Show only common lines doing case insensitive comparisons: $ echo -e "B\nc" | comm -1 -2 -i example.txt - b c STANDARDSThe The HISTORYA
|