stat命令用来显示文件或文件系统的详细信息
**语法格式:** stat [参数]
**常用参数** :
| -L | 支持符号链接 |
| ----------- | -------------------- |
| -f | 显示文件系统的信息 |
| -t | 以简洁的方式输出 |
| --help | 显示命令帮助信息 |
| --version | 显示命令版本信息 |
**参考实例**
查看文件 anaconda-ks.cfg 的三种时间状态:Access,Modify,Change:
```
[root@anycode ~]# stat anaconda-ks.cfg
```
查看文件系统信息:
```
[root@anycode ~]# stat -f anaconda-ks.cfg
```
以简洁的方式输出信息:
```
[root@anycode ~]# stat -t anaconda-ks.cfg
anaconda-ks.cfg 1229 8 8180 0 0 fd00 68898764 1 0 0 1540481629 1540510390 1540510390 0 4096 system_u:object_r:admin_home_t:s0
```
命令版本信息:
```
[root@anycode ~]# stat --version
```