使用 grep 或 awk 查找同时包含“a”和“a”的文件和“b”位于不同线路上
有没有办法使用 grep 或 awk 来查找同时包含“a”和“b”的文本文件,但在本例中“a”和“b”是在不同的线路上?
Is there a way to use grep
or awk
to find text files that contain both e.g. "a" and "b" but in this case "a" and "b" are on different lines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个简单的
awk
解决方案:稍微简单一点的方法是仅使用
grep
,利用其返回值作为已找到该值的指示符:您可能希望重定向标准输出,但上面应该是简单且实用的。如果需要,您可以将其包装在一个循环中:
Here's a simple
awk
solution:A slightly simpler way is to just use
grep
, leveraging its return value as an indicator that the value was found:You may want to redirect standard output, but the above should be simple and functional. You could wrap it in a loop if wanted:
你也许可以用一些讨厌的 shell 来拼凑一些东西,这些 shell 解析了“a”的 grep 输出,并用它来构建一个文件列表来 grep“b”,但如果是我,我会放在一起简短的 Perl 脚本。
You might be able to cobble something together with some nasty shell which parsed the output of grepping for "a" and used that to build up a list of files to grep for "b", but if it were me I'd put together a short perl script.
看看这是否适合您:
See if this works for you: