Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有file1和file2。如果file1中的任何行存在于file2中,我需要搜索并打印出来。如果不存在,我需要知道不存在任何条目。如何在 linux 命令中实现这一点?
只需要grep:
grep -f file1 file2
如果您希望将 file1 处理为固定字符串,而不是正则表达式模式,则需要添加参数 -F。
grep -F -f file1 file2
grep 可以完成这项任务。
grep -f File1 File2
但是,也可以使用其他命令,例如diff和。cmp
diff
cmp