grep整个文件并尾随它而不使用grep中的“line-buffered”选项

时间:2014-02-14 19:23:51

标签: shell grep tail busybox

我安装了BusyBox v1.21.0并且它有非常基本的grep操作,没有--line-buffered选项

grep sync_complete /var/log/messages
tail -f /var/log/messages | grep sync_complete

是否可以将上述命令组合成单行命令?谢谢!

1 个答案:

答案 0 :(得分:1)

使用-n +1从头开始尾部读取文件:

tail -n +1 -f /var/log/messages | grep sync_complete