使用 grep 或 awk 查找同时包含“a”和“a”的文件和“b”位于不同线路上

发布于 2024-09-24 16:59:28 字数 67 浏览 1 评论 0原文

有没有办法使用 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 技术交流群。

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

发布评论

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

评论(4

も星光 2024-10-01 16:59:29

这是一个简单的 awk 解决方案:

awk 'BEGIN {acnt=0; bcnt=0;} /a/ {acnt++;} /b/ {bcnt++} END { if (acnt > 0 && bcnt > 0) print "Matches"; }' $FILE

稍微简单一点的方法是仅使用 grep,利用其返回值作为已找到该值的指示符:

grep -l a $FILE && grep -l b $FILE && echo "Both a and b found in $FILE"

您可能希望重定向标准输出,但上面应该是简单且实用的。如果需要,您可以将其包装在一个循环中:

files=""
for x in *; do
    grep -l a $x && grep -l b $x && files="$files $x" # assuming no spaces
done
# now you can iterate over $files

Here's a simple awk solution:

awk 'BEGIN {acnt=0; bcnt=0;} /a/ {acnt++;} /b/ {bcnt++} END { if (acnt > 0 && bcnt > 0) print "Matches"; }' $FILE

A slightly simpler way is to just use grep, leveraging its return value as an indicator that the value was found:

grep -l a $FILE && grep -l b $FILE && echo "Both a and b found in $FILE"

You may want to redirect standard output, but the above should be simple and functional. You could wrap it in a loop if wanted:

files=""
for x in *; do
    grep -l a $x && grep -l b $x && files="$files $x" # assuming no spaces
done
# now you can iterate over $files
嘿咻 2024-10-01 16:59:29
awk '/a/{f=1}/b/{g=1}END{if(f && g) print "matches"}' file
awk '/a/{f=1}/b/{g=1}END{if(f && g) print "matches"}' file
离旧人 2024-10-01 16:59:29

你也许可以用一些讨厌的 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.

┊风居住的梦幻卍 2024-10-01 16:59:29

看看这是否适合您:

grep -lP '(?m)(a.*(.*\n)*.*b)|(b.*(.*\n)*.*a)' *

See if this works for you:

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