更改上次编辑日期

更改上次编辑日期

如何更改文件的上次编辑日期?似乎没有类似的东西:

chlastediteddate  12/7/12 file

什么命令可以做到这一点?有没有一种方法可以做到这一点,而无需更改计算机认为的日期、编辑文件并更正计算机认为的日期?

答案1

您正在寻找的命令touch带有选项-d(或--date

touch - 更改文件时间戳

(...)

-d, --date=字符串

解析 STRING 并使用它代替当前时间

例如:

touch -d '2016-01-15 22:41:18' file

甚至

touch -d '3 months ago' file

一如既往man touch是你的朋友。

相关内容