1 2 3 4
第二个文件如下B.txt
1 2 3 6
我想知道A.txt里面是什么,但不知道B.txt里面是什么即它应该打印值4
我想在Linux上这样做.
awk 'NR==FNR{a[$0]=1;next}!a[$0]' B A
没试过,试一试