tail -f path
以上将立即输出对文件的修改,但我想对输出应用过滤器,仅在其中有关键字xxx时显示.
怎么解决这个问题?
所以要过滤尾部,你可以使用grep:
tail -f path | grep your-search-filter