如何做 diff 的相反操作?
可能的重复:
如何显示公共行(反向差异)? < /p>
是有没有一个命令可以做 diff 的相反操作?我想比较两个文件,如果两个文件中存在相同的内容,则创建它们的列表。我试图找出两个文件中存在的条目。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个不会改变行顺序的解决方案:
Here is a solution that WILL NOT change the order of the lines:
使用 join 命令:
join a.txt b.txt
假设文件已排序;如果不:
Use the join command:
join a.txt b.txt
assuming the files are sorted; if not: