6月 28

在Linux和Windows平台下查找两列数据中不重复的记录

  • 在Linux中使用Shell查找两列数据中不重复的记录[简便、高效;推荐!]

现有两个文件first.txt和second.txt,内容分别如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
cat first.txt
赵
钱
孙
周
郑
王
cat second.txt
钱
赵
孙
孙
李
吴

首先进行预处理,如下:

1
2
sort first.txt | uniq >first_sort_uniq.txt
sort second.txt | uniq >second_sort_uniq.txt

Continue reading