如何通過比較兩個文本文件使用linux命令獲得以下輸出?謝謝。比較兩個文件並獲得相同行的輸出
文件1:
site110
site120
文件2(更新):
domain1.com - site110
domain2.com - site111
domain3.com - site112
domain4.com - site113
domain5.com - site120
domain6.com - site1201
domain7.com - site1202
輸出:
domain1.com - site110
domain5.com - site120
如果我使用:
grep -f file1 file2
輸出將是:
domain1.com - site110
domain5.com - site120
domain6.com - site1201
domain7.com - site1202
其中最後兩行是不是我想要的。謝謝。
沒有必要添加「[已解決]」,系統有它自己的指標。 – 2010-05-14 19:08:05
謝謝。我喜歡SO系統。 :) – garconcn 2010-05-18 20:16:50
我在這裏也不能使'grep -f'工作,但是如果我在'grep'命令中加上'-w'就可以。 – Thor 2012-09-08 20:38:42