如何使用 grep 制作一个非常基本的文件过滤器?
这是一个非常简单的问题,但我在这里找不到简单的答案。
我有一个日志文件 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
tail -f 监视文件并输出添加到末尾的所有行
tail -f watches the file and outputs any lines added to the end
你说得对,很简单:
You're right, it's simple: