file命令 – 识别文件类型
常与 -m 一起使用,用来在安装幻数文件之前调试它 | | -f | 指定名称文件,其内容有一个或多个文件名称时,让file依序辨识这些文件,格式为每列一个文件名称 | | -L | 直接显示符号连接所指向的文件类别 | | -m | 指定魔法数字文件 | | -v | 显示版本信息 | | -z | 尝试去解读压缩文件的内容 | | -i | 显示MIME类别 | **参考实例:** 显示文件类型: ``` [root@anycode ~]# file install.log install.log: UTF-8 Unicode text ``` 显示文件类型,不显示文件名称: ``` [root@anycode ~]# file -b install.log UTF-8 Unicode text ``` 显示文件类型, 显示MIME类别,不显示文件名称: ``` [root@anycode ~]# file -b -i install.log text/plain; charset=utf-8 ``` 显示符号链接的文件类型: ``` [root@anycode ~]# ls -l /var/mail lrwxrwxrwx 1 root root 10 08-13 00:11 /var/mail -> spool/mail [root@anycode ~]# file /var/mail /var/mail: symbolic link to `spool/mail' ``` 显示符号连接所指向的文件类别: ``` [root@anycode ~]# file -L /var/mail /var/mail: directory ```