touch 创建空文件夹及改变文件的时间戳
语法格式:touch 【option】【file】 touch [选项] [文件]
注意:
1.mkdir 命令以及后面的选项和目录,每个元之间都要至少要有一个空格
2.在 Linux 中一切皆为文件。虽然 touch 命令不能创建目录,但可以修改目录的时间戳
参数选项:a,m,d,r,t
案例一:
同时创建多个文件
案例二:
更改文件的时间戳
touch -a ysg #<== -a 更改最后访问的时间
touch -m ysg #<== -m 更改最后修改的时间
案例三:
touch -d 20200501 data.txt 指定创建文件后的文件修改时间
touch -r 1.txt test.txt 修改 test.txt 的属性,并与 1.txt 的时间属性一致
touch -t 201805011030.50 test.txt
-t 为使用[[CC]YY]MMDDhhmm[.ss]格式的时间设置文件的时间属性,即世纪、年、月、日、时、分、秒
原文地址:http://blog.51cto.com/12384628/2103545
时间: 2024-10-10 02:24:13