- comm -12 file1 file2 就只显示在两个文件中都存在的行
- comm -23 file1 file2 只显示在第一个文件中出现而未在第二个文件中出现的行
- comm -13 file1 file2 只显示在第一个文件中未出现而出现在第二个文件中的行
其中参数意义:
-1 不显示只在第1个文件里出现过的列。(suppress lines unique to FILE1)
-2 不显示只在第2个文件里出现过的列。(suppress lines unique to FILE2)
-3 不显示在第1和第2个文件里都出现过的列。(suppress lines that appear in both files)
-2 不显示只在第2个文件里出现过的列。(suppress lines unique to FILE2)
-3 不显示在第1和第2个文件里都出现过的列。(suppress lines that appear in both files)