我安装了BusyBox v1.21.0并且它有非常基本的grep操作,没有--line-buffered选项
grep sync_complete /var/log/messages
tail -f /var/log/messages | grep sync_complete
是否可以将上述命令组合成单行命令?谢谢!
答案 0 :(得分:1)
使用-n +1
从头开始尾部读取文件:
tail -n +1 -f /var/log/messages | grep sync_complete