sort实现,sort -m可以合并已经排好序了的文件
并:sort -m <(sort file1 | uniq) <(sort file2 | uniq) | uniq 交:sort -m <(sort file1 | uniq) <(sort file2 | uniq) | uniq -d 差:sort -m <(sort file1 | uniq) <(sort file2 | uniq) <(sort file2 | uniq) | uniq -u
逛论坛发现的其它方法 grep -f file1 file2 第一个文件有而第二个文件没有的 grep -fv file1 file2 两个文件的并集 cat file1 file2 | sort | uniq > file3
|
阅读(856) | 评论(0) | 转发(0) |