June 2003
Beginner to intermediate
944 pages
43h 1m
English
comm
comm [options] file1
file2
Compare lines common to the sorted files file1 and file2. Three-column output is produced: lines unique to file1, lines unique to file2, and lines common to both files. comm is similar to diff in that both commands compare two files. But comm can also be used like uniq; comm selects duplicate or unique lines between two sorted files, whereas uniq selects duplicate or unique lines within the same sorted file.
Read the standard input.
Suppress printing of column num. Multiple columns may be specified and should not be space-separated.
Print help message and exit.
Print version information and exit.
Compare two lists of top-10 movies, and display items that appear in both lists:
comm -12 siskel_top10 ebert_top10Read now
Unlock full access