我有一些几个月前修改过的文件,我希望它们现在显示为具有当前日期。
通过运行类似的东西
$ touch *.txt or
$ touch .jpg
这只会修改这些文件的时间戳,对吧?或者这些文件中的其他一些位也被修改了吗?
答案1
从手册页:
Update the access and modification times of each FILE to the current time.
它既不知道也不关心文件中实际包含的内容。
我有一些几个月前修改过的文件,我希望它们现在显示为具有当前日期。
通过运行类似的东西
$ touch *.txt or
$ touch .jpg
这只会修改这些文件的时间戳,对吧?或者这些文件中的其他一些位也被修改了吗?
从手册页:
Update the access and modification times of each FILE to the current time.
它既不知道也不关心文件中实际包含的内容。