Linux 每日一命令 — tail

说明:只显示最后几行

参数:

-n number : 显示指定的最后number行内容
-f  : 即时显示文件最后内容

Example:

tail -n 100 /etc/passwd

tail -f ./log/nginx.log