如何做这样的事情:
touch <some random file> -10 minutes
即。更改相对于当前在文件上设置的创建或修改时间。
答案 0 :(得分:2)
示例:
$ ls -l something
-rw-rw-r-- 1 tgs tgs 0 2010-03-22 16:03 something
$ touch -r something -d '-1 day' something
$ ls -l something
-rw-rw-r-- 1 tgs tgs 0 2010-03-21 16:03 something
http://linux.about.com/library/cmd/blcmdl_touch.htm
要更改mtime,请添加--time = mtime