Examples (5)
Produce three tab-separated columns: lines only in first file, lines only in second file, and common lines
comm file1 file2Print only lines common to both files
comm -12 file1 file2Get lines only found in first file, saving the result to a third file
comm -23 file1 file2 > file1_onlyPrint lines only found in second file, when the files aren't sorted
comm -13 <(sort file1) <(sort file2)made by @shridhargupta | data from tldr-pages