bash – 管道尾部输出虽然grep两次

前端之家收集整理的这篇文章主要介绍了bash – 管道尾部输出虽然grep两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用典型的Apache访问日志,您可以运行:
tail -f access_log | grep "127.0.0.1"

哪些只会显示指定IP地址的日志(创建时).

但是,为什么在第二次通过grep管道时会失败,以进一步限制结果?

例如,“.css”的简单排除:

tail -f access_log | grep "127.0.0.1" | grep -v ".css"

不会显示任何输出.

我相信这里的问题是第一个grep正在缓冲输出,这意味着第二个grep将不会看到它,直到缓冲区被刷新.

尝试在您的第一个grep上添加–line-buffered选项:

tail -f access_log | grep --line-buffered "127.0.0.1" | grep -v ".css"

有关更多信息,请参阅“BashFAQ/009 — What is buffering? Or,why does my command line produce no output: tail -f logfile | grep 'foo bar' | awk ...

原文链接:https://www.f2er.com/bash/386501.html

猜你在找的Bash相关文章