Shell

grep 和 tail -f?

  • April 5, 2017

是否可以同時對tail -f文件執行(或類似)操作grep?我不介意其他命令只是尋找這種行為。

使用 GNUtail和 GNU grep,我可以tail -f使用簡單的語法 grep a :

tail -f /var/log/file.log | grep search_term

添加--line-bufferedgrep,這可能會減少您的延遲。在某些情況下非常有用。

tail -f foo | grep --line-buffered bar

引用自:https://unix.stackexchange.com/questions/3229