Answers:
尝试:
tail -f your.log
哪里-f
代表跟随。
multitail
因此很方便,即 multitail -f your.log ref。unix.stackexchange.com/a/8419/17671
grc
即GRC尾-f your.log参考。unix.stackexchange.com/a/21962/17671
其他方式:
观看尾巴-n20 your.log
好的,有点愚蠢的用法watch
-但您可能会发现该watch
命令对其他事情很有用。
watch
在观看期间要重命名/删除和重新创建(通过正常操作或通过logrotate之类的文件)的文件,此选项更好,否则tail -f
效率更高。
tail -F
处理这个。
@cYrus答案的替代方法是:
less +F file.log
好处是less
还可以用该-S
标志为您截断长行,从而防止它们在终端屏幕上环绕,同时允许您左右滚动。相反,管道的tail -f file.log
通过cut
或类似的东西,你可以:
less -S +F file.log
tail -f myfile.log
。很好。我爱Linux。