Home > Article > System Tutorial > What are the commands for creating new files in Linux?
Linux新建文件命令:touch:新建空文件echo >:标准输出重定向到新文件cat >:将标准输入或指定文件内容写入新文件mkdir -p:创建目录并同时新建文件
Linux 新建文件的命令
在 Linux 系统中,可以使用以下命令新建文件:
touch
此命令用于新建一个空文件。
<code>touch 文件名</code>
>
此命令将标准输出重定向到一个新文件。
<code>echo 内容 > 文件名</code>
cat
此命令可将标准输入或指定文件的内容写入新文件。
<code>cat > 文件名</code>
创建目录的新建文件
以上命令还可用于在不存在时同时创建目录和文件。
<code>mkdir -p 目录/文件名</code>
详细信息
The above is the detailed content of What are the commands for creating new files in Linux?. For more information, please follow other related articles on the PHP Chinese website!