我需要用 显示日志文件的最后 10 行tail
。我目前使用以下命令:
tail -n 10 -f /var/log/myapp/access.log
但它没有按预期工作,因为它没有跟随添加的新行。
执行这个命令是什么?
答案1
尝试按照以下方式进行:
watch -t -n 1 tail -n 10 /var/log/myapp/access.log
参数用于watch
:
-t, --no-title turn off header
-n, --interval <secs> seconds to wait between updates