tail -f 和grep 无法重定向问题

当使用tail -f xxxx.log | grep -i “xxx” > output 时,无法重定向到output文件,
解决方法如下:

tail -f xxxx.log | while read LINE; do echo $LINE|grep -i  "xxx"; done >> output

发表评论

您的电子邮箱地址不会被公开。