tail 文件 - 计算具有给定模式的行数
我需要保证特定的字符串出现在活动日志文件中, 表示操作处于活动状态(将此计数提供给触发器)。
考虑到我将远程执行此操作, 我不能使用“tail -f filename”,否则它将无限期地跟随该文件, 因此,我正在考虑抓住一堆最后写下的行并将它们算作“
tail -n8 /var/log/service/service_V138/operations.log| grep \|DONE\| | wc -l
有没有更好的方法?”
I need to guarantee that a specific string is appearing in an active log file,
meaning an operation is alive (feeding this count to a Trigger).
Considering I'll do this remotely,
I can't go with 'tail -f filename' else it would follow the file indefinitely,
thus I'm thinking about grabbing a bunch of last written lines and counting them as,
tail -n8 /var/log/service/service_V138/operations.log| grep \|DONE\| | wc -l
Is there any better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过删除到
wc
的管道并使用grep -c
来改进这一点。You can improve this a bit, by removing the pipe to
wc
and usinggrep -c
instead.less +F -N somelogfile.log ?模式
简单易行
less +F -N somelogfile.log ?pattern
simple and easy