英文: touch
描述: 创建文件或更新时间戳
命令格式
touch [命令选项] 文件名
命令选项
-a
只更改访问时间
-c, --no-create
不创建任何文件
-d, --date=字符串
使用指定字符串表示时间而非当前时间
-f
忽略
-h, --no-dereference
影响每个符号链接而不是任何引用file(仅适用于可以更改的系统符号链接的时间戳)
-m
只更改修改时间
-r, --reference=文件
使用指定文件的时间属性而非当前时间
-t STAMP
使用[[CC]YY]MMDDhhmm[.ss]格式的时间而非当前时间
CC – 年份的前两位数字
YY – 年份的后两位数字
MM – 月份 (01-12)
DD – 天 (01-31)
hh – 小时 (00-23)
mm – 分钟 (00-59)
ss-秒(00-59)
–time=WORD
使用WORD 指定的时间:access、atime、use 都等于-a选项的效果,而modify、mtime 等于-m 选项的效果
实例
- 创建空文件
touch info.txt
- 批量创建10个文件
touch info_{1..10}.txt
- 更改info.txt的修改时间为当前时间
touch -a info.txt
- 更改访问时间而不用创建新文件
touch -c info.txt
- 更改info.txt的时间与info_1.txt时间戳相同
touch info.txt -r info_1.txt
- 设置文件时间戳
touch info.txt -t 201906241840.50