Shell 取两个文件的交集和并集

cat 1.txt 2.txt | sort -n | uniq -d 交集

cat 1.txt 2.txt 2.txt | sort -n | uniq -u 差集 去除1.txt里2.txt里包含的内容

1.txt和2.txt都已排重。