gpt4 book ai didi

regex - Grep(或者可能是正则表达式)在匹配之前或之后检查行上的模式

转载 作者:行者123 更新时间:2023-12-02 06:45:34 24 4
gpt4 key购买 nike

我有一个简单的 grep 命令,它返回文件中匹配的行。这就是问题所在:有时,当一行匹配时,我想在它之前包含该行。我想要的是一种方法来找到与某个模式匹配的所有行,然后使用不同的模式来查看每个结果之前的行是否匹配。

假设我想获取所有包含“bar”的行,并且仅当它们包含“foo”时才获取每行之前的行。给出这样的输入:

    Spam spam eggs eggs    Let's all go to the bar.    Blah Blah Blah foo.    Meh.    foo foo foo    Yippie, a bar.

我想要这样的结果:

    Let's all go to the bar    foo foo foo    Yippie, a bar.

最佳答案

您可以使用 -B 选项在匹配之前包含上下文行(还有 -A 用于在匹配之后包含上下文行,以及 -C 用于包括前后的上下文行)。然后,您可以将结果通过管道传输到另一个 grep:

# Get all lines matching 'bar' and include one line of context before each match
# Then, keep only lines matching 'bar' or 'foo'
grep bar -B1 the-file | grep 'bar\|foo'

关于regex - Grep(或者可能是正则表达式)在匹配之前或之后检查行上的模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1126872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com