Linux shell touch 命令
Linux shell touch 命令用于修改文件或者目录的时间属性,包括存取时间和更改时间。
若文件不存在,系统会建立一个新的文件。
ls -l
命令可以显示档案的时间记录。
touch 命令语法格式
touch [-acfm][-d<日期时间>][-r<参考文件或目录>] [-t<日期时间>][--help][--version][文件或目录…]
参数
- -a 改变档案的读取时间记录
- -m 改变档案的修改时间记录
- -c 假如目的档案不存在,不会建立新的档案。与 --no-create 的效果一样
- -f 不使用,是为了与其他 unix 系统的相容性而保留
- -r 使用参考档的时间记录,与 --file 的效果一样
- -d 设定时间与日期,可以使用各种不同的格式
- -t 设定档案的时间记录,格式与 date 指令相同
- --no-create 不会建立新档案
- --help 列出指令格式
- --version 列出版本讯息
范例
使用 touch
命令修改文件 demo.txt
的时间属性为当前系统时间
[root@localhost ~]# touch demo.txt # 修改文件的时间属性
首先,使用 ls 命令查看 demo.txt
文件的属性
[root@localhost ~]# ls -l demo.txt -rw-r--r--. 1 root root 612 Sep 22 15:02 demo.txt
执行 touch demo.txt
修改文件属性以后,并再次查看该文件的时间属性
[root@localhost ~]# touch demo.txt [root@localhost ~]# ls -l demo.txt # 查看文件的时间属性 -rw-r--r--. 1 root root 612 Sep 22 22:22 demo.txt
使用 touch
命令时,如果指定的文件不存在,则将创建一个新的空白文件。
例如,在当前目录下,使用该指令创建一个空白文件 file
[root@localhost ~]# touch file #创建一个名为 `file` 的新的空白文件