标签: shell unix
我想找到两个文件之间的区别,只打印唯一的行。
我尝试使用uniq -u,但它无效。
uniq -u
diff test.sh test1.sh > test.txt sort test.txt | uniq -u > test1.txt
我还能做同样的事情吗?
答案 0 :(得分:2)
> cat 1 1 2 3 4 > cat 2 2 3 4 5 > cat 1 2 | sort | uniq -u 1 5