标签:touch 指定 改变 type txt 定时 当前时间 访问 一个
touch的基本功能是改变文件的时间戳,以下是三种常用用法:
以当前时间为时间戳创建一个空文件。
$ touch touch.txt //touch.txt不存在
将指定的已有文件的修改时间和访问时间更改为当前时间,或指定时间。
$ touch test.txt //test.txt已存在
$touch -d ‘20141229 12:00:00‘ test.txt
$ find . -name "*" -type f | xargs touch -d ‘20151229 14:22:00‘
标签:touch 指定 改变 type txt 定时 当前时间 访问 一个
原文地址:https://www.cnblogs.com/pandachen/p/9160844.html