linux – 在tail -f中,如何过滤掉具有某些关键字的内容?

前端之家收集整理的这篇文章主要介绍了linux – 在tail -f中,如何过滤掉具有某些关键字的内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想尾随我的日志.但是,我想过滤掉所有包含这些词语的内容

“ELB”,“Pingdom”,“健康”

解决方法

我不知道使用awk而不是grep,但这对我有用:
tail -f file.log | grep -Ev '(ELB|Pingdom|Health)'

编辑:正如dmouratiCaleb所指出的那样,为方便起见,您也可以使用egrep而不是grep -E.在某些系统上,这将是指向同一二进制文件链接,而在其他系统中则是由grep包提供的副本.无论哪种方式,它都可以作为-E开关的替代品.但是,根据GNU grep手册页:

[…]two variant programs egrep and fgrep are available. egrep is the same as grep -E. fgrep is the same as grep -F. Direct invocation as either egrep or fgrep is deprecated,but is provided to allow historical applications that rely on them to run unmodified.

因为它们是同义命令,所以除非你根本没有egrep,否则它归结为偏好.但是为了向前兼容,建议使用grep -E语法,因为其他方法已被正式弃用.

原文链接:https://www.f2er.com/linux/402957.html

猜你在找的Linux相关文章