如何使用 grep 制作一个非常基本的文件过滤器?

发布于 2024-11-18 22:34:03 字数 129 浏览 1 评论 0原文

这是一个非常简单的问题,但我在这里找不到简单的答案。

我有一个日志文件 my.log,其中某些行包含单词“User”。如何使 grep 命令不断运行并在每次日志更新时输出包含单词“User”的行?谢谢。

A really simple question, but I couldn't find a simple answer here on SO.

I have a log file my.log where some lines contain the word "User". How can I make a grep command to run constantly and output every time the log is updated with a line containing the word "User"? Thanks.

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

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

发布评论

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

评论(2

薄暮涼年 2024-11-25 22:34:03
tail -f my.log | grep User

tail -f 监视文件并输出添加到末尾的所有行

tail -f my.log | grep User

tail -f watches the file and outputs any lines added to the end

七度光 2024-11-25 22:34:03

你说得对,很简单:

tail -f my.log | grep "User"

You're right, it's simple:

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