本文主要是介绍uniq 求两个文件的交集,并集,差集,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参照:http://blog.csdn.net/yinxusen/article/details/7450213
集合A = {a, b, c}
集合B = {d, e, c, b}
$ man uniqWith no options, matching lines are merged to the first occurrence.-d, --repeatedonly print duplicate lines-u, --uniqueonly print unique lines
1. 求并集 A + B
>sort A B | uniq
a
b
c
d
e
2. 求交集:
>sort A B | uniq -d
b
c
>sort A B B | uniq -u
a
4. 求差集 B - A
>sort A B A | uniq -u
d
e
这篇关于uniq 求两个文件的交集,并集,差集的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!