1 | file
|
2 | ===
|
3 |
|
4 | 用来探测给定文件的类型
|
5 |
|
6 | ## 补充说明
|
7 |
|
8 | **file命令** 用来探测给定文件的类型。file命令对文件的检查分为文件系统、魔法幻数检查和语言检查3个过程。
|
9 |
|
10 | ### 语法
|
11 |
|
12 | ```shell
|
13 | file(选项)(参数)
|
14 | ```
|
15 |
|
16 | ### 选项
|
17 |
|
18 | ```shell
|
19 | -b:列出辨识结果时,不显示文件名称;
|
20 | -c:详细显示指令执行过程,便于排错或分析程序执行的情形;
|
21 | -f<名称文件>:指定名称文件,其内容有一个或多个文件名称时,让file依序辨识这些文件,格式为每列一个文件名称;
|
22 | -L:直接显示符号连接所指向的文件类别;
|
23 | -m<魔法数字文件>:指定魔法数字文件;
|
24 | -v:显示版本信息;
|
25 | -z:尝试去解读压缩文件的内容。
|
26 | ```
|
27 |
|
28 | ### 参数
|
29 |
|
30 | 文件:要确定类型的文件列表,多个文件之间使用空格分开,可以使用shell通配符匹配多个文件。
|
31 |
|
32 | ### 实例
|
33 |
|
34 | 显示文件类型
|
35 |
|
36 | ```shell
|
37 | [root@localhost ~]# file install.log
|
38 | install.log: UTF-8 Unicode text
|
39 |
|
40 | [root@localhost ~]# file -b install.log <== 不显示文件名称
|
41 | UTF-8 Unicode text
|
42 |
|
43 | [root@localhost ~]# file -i install.log <== 显示MIME类别。
|
44 | install.log: text/plain; charset=utf-8
|
45 |
|
46 | [root@localhost ~]# file -b -i install.log
|
47 | text/plain; charset=utf-8
|
48 | ```
|
49 |
|
50 | 显示符号链接的文件类型
|
51 |
|
52 | ```shell
|
53 | [root@localhost ~]# ls -l /var/mail
|
54 | lrwxrwxrwx 1 root root 10 08-13 00:11 /var/mail -> spool/mail
|
55 |
|
56 | [root@localhost ~]# file /var/mail
|
57 | /var/mail: symbolic link to `spool/mail'
|
58 |
|
59 | [root@localhost ~]# file -L /var/mail
|
60 | /var/mail: directory
|
61 |
|
62 | [root@localhost ~]# file /var/spool/mail
|
63 | /var/spool/mail: directory
|
64 |
|
65 | [root@localhost ~]# file -L /var/spool/mail
|
66 | /var/spool/mail: directory
|
67 | ```
|
68 |
|
69 |
|