--retry | 即是在tail命令启动时,文件不可访问或者文件稍后变得不可访问,都始终尝试打开文件。使用此选项时需要与选项“——follow=name”连用 | | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------- | |
-c
-f
-F | 与选项“-follow=name”和“--retry”连用时功能相同 | |
-n
--pid=<进程号> | 与“-f”选项连用,当指定的进程号的进程终止后,自动退出tail命令 | |
--help | 显示指令的帮助信息 | |
--version | 显示指令的版本信息 | **参考实例** 显示文件file的最后10行: ``` [root@anycode ~ ] tail file ``` 显示文件file的内容,从第20行至文件末尾: ``` [root@anycode ~ ] tail +20 file ``` 显示文件file的最后10个字符: ``` [root@anycode ~ ] tail -c 10 file ``` 一直变化的文件总是显示后10行: ``` [root@anycode ~ ] tail -f 10 file ``` 显示帮助信息: ``` [root@anycode ~ ] tail --help ```