Shellscript 监视日志文件如果关键字触发然后执行命令?
有没有一种便宜的方法来监视像 tail -f log.txt
这样的日志文件,然后如果出现类似 [error]
的内容,则执行命令?
谢谢。
Is there a cheap way to monitor a log file like tail -f log.txt
, then if something like [error]
appears, execute a command?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我还发现您可以使用 awk 来监视模式并在找到模式时执行一些操作:
这将在日志中找到模式时执行命令。命令可以是任何 UNIX 命令,包括 shell 脚本或其他任何命令。
I also found that you can use awk to monitor for pattern and perform some action when pattern is found:
This will execute command when pattern is found in the log. Command can be any unix command including shell scripts or anything else.
更强大的方法是 monit。该工具可以监视很多事情,但其中之一是它可以轻松跟踪一个或多个日志,与正则表达式匹配,然后触发脚本。如果您要监视一组日志文件或要触发多个事件,这尤其有用。
An even more robust approach is monit. This tool can monitor very many things, but one of them is that it will easily tail one or more logs, match against regex and then trigger a script. This is particularly useful if you have a collection of log files to watch or more than one event to trigger.
更好更简单:
Better and simple: