摘要: 一、交集 sort a.txt b.txt | uniq -d 二、并集 sort a.txt b.txt | uniq 三、差集 a.txt-b.txt: sort a.txt b.txt b.txt | uniq -u b.txt - a.txt: sort b.txt a.txt a.txt 阅读全文
posted @ 2016-04-06 11:24 molong1208 阅读(46764) 评论(2) 推荐(9) 编辑