1. 概述
在本教程中,我们将学习touch命令。简而言之,这个命令允许我们更新文件或目录的最后修改时间和最后访问时间。
因此,我们将重点关注如何使用该命令及其各种选项。
请注意,我们使用 Bash 测试了此处显示的所有命令;但是,它们应该与任何兼容 POSIX 的 shell 一起使用。
2. 默认行为
通过执行touch,文件系统上的一个或多个文件或目录将被更新,以便将它们的上次修改时间和上次访问时间设置为当前系统时间。
那么,假设今天的日期是 2020 年 2 月 1 日,时间是上午 7:00。
如上所述,该命令将更新example-file.txt文件的两个时间戳:
<span style="color:#000000"><span style="background-color:#ffffff"><code class="language-bash"><span style="color:#888888"># ls -l example-file.txt</span>
-rw-r--r-- 1 baeldung baeldung 0 Jan 1 20:00 example-file.txt<span style="color:#888888"># touch example-file.txt</span><span style="color:#888888"># ls -l example-file.txt</span>
-rw-r--r-- 1 baeldung baeldung 0 Feb 1 07:00 example-file.txt</code>复制</span></span>
2.1. 创建新文件
此外,当指定的文件不存在时,该命令将创建一个空文件并相应地设置时间:
<span style="color:#000000"><span style="background-color:#ffffff"><code class="language-bash"><span style="color:#888888"># ls -l sample-file.txt</span>
<span style="color:#397300">ls</span>: sample-file.txt: No such file or directory<span style="color:#888888"># touch sample-file.txt</span><span style="color:#888888"># ls -l sample-file.txt</span>
-rw-r--r-- 1 baeldung baeldung 0 Feb 1 07:00 sample-file.txt</code>复制</span></span>
如果创建新文件,则新创建文件的权限将默认为给定文件系统的标准权限。