How to do the opposite of diff? [duplicate]

不羁的心 提交于 2020-01-11 19:43:06

问题


Possible Duplicate:
how to show lines in common (reverse diff)?

Is there a command to do the opposite of diff? I want to compare two files if the same thing exists in both create a list of them. i am trying to figure out what entry's exist in both files.


回答1:


Here is a solution that WILL NOT change the order of the lines:

fgrep -x -f file1 file2



回答2:


Use the join command:

join a.txt b.txt

assuming the files are sorted; if not:

sort a.txt > sorted_a.txt; sort b.txt > sorted_b.txt; join sorted_a.txt sorted_b.txt


来源:https://stackoverflow.com/questions/8581090/how-to-do-the-opposite-of-diff

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!