Linux file命令教程:如何确定和处理文件的类型(附实例详解和注意事项)

发布时间:2024年01月11日

Linux file命令介绍

file命令,全称为File Type Checker, 它的主要作用是确定一个或多个文件的类型。这个命令的特性是它能够工作在一种"智能"模式下,这就意味着它可以辨认出各种各样的文件,并且不仅仅局限于文本文件。它可以识别和区分目录,二进制文件,文本文件,并且还可以识别出很多种特定文件格式。

Linux file命令适用的Linux版本

file命令在几乎所有的Linux发行版中都可以使用。不过,可能存在某些发行版尚未安装file命令的情况。这时可以通过下面的安装命令进行安装。

对于使用APT工具的Ubuntu或Debian系统,可以输入以下命令安装:

[linux@bashcommandnotfound.cn ~]$ sudo apt-get install file

对于使用YUM或DNF工具的CentOS或Fedora系统,可以使用以下命令进行安装:

CentOS 7:

[linux@bashcommandnotfound.cn ~]$ sudo yum install file

CentOS 8:

[linux@bashcommandnotfound.cn ~]$ sudo dnf install file

Linux file命令的基本语法

file命令的基本语法如下:

file [option]... [file]...

你可以使用一个或者多个文件作为参数,file命令会为每一个文件都输出一个描述。

Linux file命令的常用选项或参数说明

下面是命令的部分选项以及它们的说明:

选项说明
-b, --brief只显示结果,不显示被检查的文件名
-c, --checking-printout输出解析magic文件时的详细信息
-e, --exclude TEST不进行TEST类型的测试
-F, --separator string在文件名和结果之间使用指定字符串作为分隔符
-f, --files-from file从文件中读取需要检查的文件列表
-h, --no-dereference不检查符号链接引用的文件
-i, --mime输出MIME类型
-k, --keep-going对于文件类型列表,一直检查到最后
-n, --no-buffer不进行缓冲输出
-p, --preserve-date保留文件的访问时间
-s, --special-files同样检查块和字符类型的特殊文件
-v, --version输出版本信息
-z, --uncompress尝试查看压缩文件的内容

Linux file命令实例详解

接下来我们将通过一些实例来详细解释file命令的使用。

实例1: 确定文件类型

我们先来创建一份文本文件,然后使用file命令来检查它的类型。

[linux@bashcommandnotfound.cn ~]$ echo "Hello, World" > hello.txt
[linux@bashcommandnotfound.cn ~]$ file hello.txt

运行上述命令后,你将会获得 “hello.txt: ASCII text” 这样的输出,说明file成功地识别出了我们的文本文件。

实例2: 忽略符号链接

在默认情况下,file命令会检查符号链接引用的文件。但是我们可以使用-h选项来阻止这个行为。

[linux@bashcommandnotfound.cn ~]$ ln -s hello.txt link_to_hello
[linux@bashcommandnotfound.cn ~]$ file link_to_hello
[linux@bashcommandnotfound.cn ~]$ file -h link_to_hello

在上述命令中,第一个file命令的输出将是 “link_to_hello: symbolic link to hello.txt”,而第二个file命令的输出将是 “link_to_hello: ASCII text”。

实例3: 显示文件的MIME类型

使用-i选项,我们可以得到文件的MIME类型。这个类型对于编程开发和网络应用很重要。

[linux@bashcommandnotfound.cn ~]$ file -i hello.txt

上述命令将输出 “hello.txt: text/plain; charset=us-ascii”,明确地告知我们文件的MIME类型和字符集。

实例4: 从文件中读取文件列表

如果我们有一个包含了许多文件名的文件,我们可以使用-f选项来让file自动读取文件名和检查它们。

[linux@bashcommandnotfound.cn ~]$ echo hello.txt > files.txt
[linux@bashcommandnotfound.cn ~]$ file -f files.txt

上述命令将输出 “hello.txt: ASCII text”,证明file成功地从文件中读取了文件名并且检查了它们。

实例5: 确认二进制文件类型

file可以自动识别出二进制文件类型,下面我们来看一下怎么检查一个二进制文件。

[linux@bashcommandnotfound.cn ~]$ file /usr/bin/ls

你将得到类似于 “/usr/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV)” 的输出,它告诉你ls是一个64位的可执行二进制文件。

实例6: 检查压缩文件

file 命令也可以检查压缩文件。让我们创建一个 gzip 压缩文件,并使用 file 命令检查它的类型。

[linux@bashcommandnotfound.cn ~]$ echo "This is a test." | gzip > test.gz
[linux@bashcommandnotfound.cn ~]$ file test.gz

上述命令将会输出 “test.gz: gzip compressed data”,证明 file 成功地识别出了 gzip 压缩文件。

实例7: 检查图片文件

file 命令可以识别各种常见的图片格式,比如 JPEG、PNG、GIF 等。以下是一个检查 PNG 图片文件的示例:

[linux@bashcommandnotfound.cn ~]$ file picture.png

运行上述命令,你可能会收到 “picture.png: PNG image data, 800 x 600, 8-bit/color RGB, non-interlaced” 这样的输出,由此得知图片的宽度、高度、颜色深度和是否交错。

实例8: 排除特定测试

使用 -e 选项,我们可以排除某些特定类型的检查。例如,我们可以排除符号链接测试:

[linux@bashcommandnotfound.cn ~]$ file -e apptype hello.txt

在以上命令中,file 命令将不会尝试判断 hello.txt 是否是一种应用程序类型。

Linux file命令的注意事项

  • 如果你在使用file命令时遇到了 “bash: file: command not found”,那可能是你的系统中尚未安装file命令。你可以按照本文档中的指南进行安装。
  • 在进行文件类型的判断时,file命令是通过查看文件的头部信息来确定的。在某些情况下,file可能无法准确确定文件类型。
  • 在使用file命令的-m选项指定magic文件时,请确保magic文件的格式是正确的,否则file命令的行为可能会出现不确定。

Linux file相关命令

以下是在操作系统中使用的一些与文件交互的其他命令。

文章来源:https://blog.csdn.net/u012964600/article/details/135404519
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。