如何在Linux中创建空文件

时间:2020-01-09 10:37:52  来源:igfitidea点击:

如何在Linux的bash shell或命令行中创建一个空文件?
在Linux中创建空文件的命令是什么?

说明:空文件表示零字节且纯文本格式的文件中没有存储数据。
创建空白的打开的办公文件时,它包含额外的数据结构。
在Linux上创建空文件的最佳方法是使用touch命令。

如何在Linux中使用touch命令创建空文件

  • 打开一个终端窗口。在Linux上按CTRL + ALT + T打开终端应用程序。
  • 要在Linux的命令行中创建一个空文件:touch fileNameHere
  • 在Linux上验证是否已使用ls -l fileNameHere创建了文件

让我们看一些在Linux中创建空文件的示例和命令。

如何在Linux上创建一个空白文件

如前所述,请使用touch命令创建一个空文件。
在此示例中,创建了文件passbook.txt:

touch passbook.txt

使用ls命令查看是否创建了文件:

ls
ls -l
ls -l passbook.txt

使用cat命令来验证是否没有任何东西存储在名为passbook.txt的文件中:

cat passbook.txt

如何在Linux上使用touch命令创建一个空文件

Linux上的touch命令的目的是什么?

touch命令用于将给定FILENAME的访问和修改时间更新为当前Linux时间。
如果FILENAME不存在,则将其创建为空文件。
在Linux上,可以使用以下file命令验证文件是否为空:

file passbook.txt 
`passbook.txt: empty`

使用>重定向运算符在Linux中创建空文件

在Linux中制作空文件的另一种方法是执行以下命令:

> file-name-here
echo '' > filename
ls filename
file filename