如何做 diff 的相反操作?

发布于 2024-12-22 01:36:44 字数 273 浏览 2 评论 0原文

可能的重复:
如何显示公共行(反向差异)? < /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

她如夕阳 2024-12-29 01:36:44

这是一个不会改变行顺序的解决方案:

fgrep -x -f file1 file2

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

fgrep -x -f file1 file2
孤檠 2024-12-29 01:36:44

使用 join 命令:

join a.txt b.txt

假设文件已排序;如果不:

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

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文