命令格式
tail [OPTION]... [FILE]...
命令参数
-c, --bytes=[-]K
显示每个文件的后 K 字节内容。
-f, --follow[={name|descriptor}]
持续监视指定的文件,当文件追加内容时,新的内容会立即显示在屏幕上。
-n, --lines=[-]K
显示每个文件的后 K 行内容。
--pid=PID
与 -f 选项配合使用,当 PID 进程结束后,终止 tail。
-q, --quiet, --silent
从不显示包含给定文件名的文件头。
-s, --sleep-interval=N
与 -f 选项配合使用,表示在每次反复的间隔休眠 N 秒。
-v, --verbose
总是显示包含给定文件名的文件头。
--help
显示帮助信息。
--version
显示版本信息。
实例
a) 显示 /etc/passwd 后 5 行的内容。
[[email protected] cmdline]$ tail -n 5 /etc/passwd huey:x:504:504::/home/huey:/bin/bash sugar:x:505:492::/home/sugar:/bin/bash ming:x:506:504::/home/ming:/bin/bash zlee:x:507:504::/home/zlee:/bin/bash gll:x:508:504::/home/gll:/bin/bash
b) 持续观察日志文件 app.log 的输出。
[[email protected] cmdline]$ tail -f app.log
时间: 2024-11-16 16:23:31