tail grep 有哪些工具

tail grep 有哪些工具

我想运行以下命令:

tail -f /var/log/syslog | grep -ri 00:16:CB:1E:AF:CA

在 Linux 中它不起作用。如何以交互方式从日志文件中 grep 某些文本?

答案1

在你的情况下,grep -r (递归) 没有意义,因为你只是在单个文件中搜索。只需使用tail -f /var/log/syslog | grep -i 00:16:CB:1E:AF:CA

答案2

根据 stackoverflow

tailf file | grep --line-buffered 00:16:CB:1E:AF:CA

应该可以

相关内容