March 2012
Beginner to intermediate
230 pages
7h 27m
English
comm — stdin stdout - file -- opt --help --version
comm [options]file1 file2
The comm command compares
two sorted files and produces three columns of output, separated by
tabs:
All lines that appear in file1 but not in file2.
All lines that appear in file2 but not in file1.
All lines that appear in both files.
For example, if file1 and file2 contain these lines:
file1: file2:
apple baker
baker charlie
charlie darkthen comm produces this three-column
output:
$ comm file1 file2
apple
baker
charlie
dark|
|
Suppress column 1. |
|
|
Suppress column 2. |
|
|
Suppress column 3. |
Read now
Unlock full access