在 Linux 中比较两个文件以匹配单词
假设我们有两个文件,如下所示
文件 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想使用dwdiff实用程序:)。
用法示例:
可能需要一段时间才能习惯它的输出,但请检查 http://linux .die.net/man/1/dwdiff 了解更多详细信息。
还有一些视觉差异应用程序,但我更喜欢在命令行上使用它。
You want to use the dwdiff utility :).
Example usage:
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.