zl程序教程

您现在的位置是:首页 >  其他

当前栏目

tail 查看文件末尾n行、日志持续追踪

文件日志 查看 持续 追踪 tail 末尾
2023-09-11 14:21:21 时间

tail命令用于指定查看文件末位的n行,这个文件对持续追踪日志输出很有用,其语法格式如下:

tail  [选项] 文件名

参数如下:

-n  	:指定输出文件末位n行,默认是10 行
-f    	:持续追踪,通常用于持续追踪日志的输出

演示示例:

[root@Centos8 ~]# tail -3 /etc/passwd				#输出文件的末位3行
nginx:x:1001:1001::/home/nginx:/bin/false
mysql:x:973:1002::/home/mysql:/bin/false
php:x:1002:1003::/home/php:/bin/false

[root@Centos8 ~]# tail -22f /var/log/messages     #持续追踪日志,这里-22f也可以写成 -f -n22,n不可省略
May 20 22:55:55 Centos8 systemd-tmpfiles[2056]: [/usr/lib/tmpfiles.d/mysql.conf:23] Line references path below legacy directory /var/run/, updating /var/run/mysqld → /run/mysqld; please update the tmpfiles.d/ drop-in file accordingly.
May 20 22:55:55 Centos8 systemd-tmpfiles[2056]: [/usr/lib/tmpfiles.d/pesign.conf:1] Line references path below legacy directory /var/run/, updating /var/run/pesign → /run/pesign; please update the tmpfiles.d/ drop-in file accordingly.
May 20 22:55:55 Centos8 systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
May 20 22:55:55 Centos8 systemd[1]: Started Cleanup of Temporary Directories.