在 Linux 中比较两个文件以匹配单词

发布于 2024-10-11 00:56:04 字数 215 浏览 6 评论 0原文

假设我们有两个文件,如下所示

文件 A.txt

Karthick 并不那么聪明 他并不懒惰

File B.txt

karthick 也不错 他工作很努力

,所以在上面的两个文件中,常见的词是“卡西克不是这样”和“卡西克不是这样”。每一行中都有“他是”。有没有办法用 grep 命令或某些 linux 命令打印所有这些公共行?

Lets say we have two files as follows

File A.txt

Karthick is not so intelligent
He is not lazy

File B.txt

karthick is not so bad either
He is hard worker

so in the two files above, the commone words are "karthick is not so" & "He is" in each of the lines. Is there any way to print all such common lines with either grep command or some linux command?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盛夏已如深秋| 2024-10-18 00:56:04

您想使用dwdiff实用程序:)。

用法示例:

dwdiff "File A.txt" "File B.txt"

可能需要一段时间才能习惯它的输出,但请检查 http://linux .die.net/man/1/dwdiff 了解更多详细信息。

还有一些视觉差异应用程序,但我更喜欢在命令行上使用它。

You want to use the dwdiff utility :).

Example usage:

dwdiff "File A.txt" "File B.txt"

It might take a little while to get used to it's output, but check http://linux.die.net/man/1/dwdiff for more details on that.

There are also several visual diff applications out there, but I prefer using it on the command line.

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