Grep 查找最后一行之外的标记

发布于 2024-10-29 06:12:31 字数 217 浏览 0 评论 0原文

这看起来应该很容易,但我无法获得正确的语法。我正在尝试使用 grep 查找具有特定标记的所有文件,这些文件在包含该标记的行之后至少有一行。所以

blah blah token blah
another line here

grep 会找到类似的东西,但不会:

blah blah token blah

This seems like it should be easy, but I can't get the right syntax. I'm trying to use grep to find all files with a certain token that have at least one line following the line with the token in it. So something like:

blah blah token blah
another line here

would be found by the grep, but not:

blah blah token blah

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

注定孤独终老 2024-11-05 06:12:31

我很确定grep不做类似的多行事物(尽管有-a可以打印尾随上下文的选项)。一种方法是首先使用head切断最后一行,然后将其输送到grep

for f in *; do
    echo "$f:"
    head -n -1 "$f" | grep token

上面的代码未测试,我卡在Windows ATM上。

I'm pretty sure grep doesn't do multi-line stuff like this (though there is a -A option to print trailing context). One way would be to use head to cut off the last line first, then pipe it to grep:

for f in *; do
    echo "$f:"
    head -n -1 "$f" | grep token

Above code is not tested, I'm stuck on Windows atm.

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