如何更改一周前创建的时间戳?

如何更改一周前创建的时间戳?

我想更改一周前许多图像的创建时间戳。代码

% http://askubuntu.com/a/62496/25388
touch -d "7 days ago" *.png

输出

touch: invalid date format ‘1 one ago’

操作系统:Debian 8.5

答案1

您需要使用- foo格式:

$ ls -l file
-rw-r--r-- 1 terdon terdon 0 Nov 29 11:05 file
$ touch -d '-1 week' file 
$ ls -l file
-rw-r--r-- 1 terdon terdon 0 Nov 22 11:06 file

相关内容