在Linux系统中,可以使用touch命令来修改文件的时间戳。以下是一些常用的touch命令选项:
(其实在MacOS中也适用)
修改访问时间(Access Time)和修改时间(Modification Time):
默认情况下,touch命令会将文件的访问时间和修改时间都设置为当前时间。例如:
bash
touch example.txt
指定新的时间:
你可以给touch命令提供一个特定的日期和时间来修改文件的时间戳。时间格式通常是[YYYYMMDDhhmm]:
bash
touch -t YYYYMMDDhhmm example.txt
例如,要将example.txt的访问时间和修改时间设置为2023年10月10日上午10点10分,可以这样做:
bash
touch -t 202310101010 example.txt
只修改访问时间:
使用-a选项只修改访问时间:
bash
touch -a -m -t 202310101010 example.txt
只修改修改时间:
使用-m选项只修改文件的修改时间:
bash
touch -m -t 202310101010 example.txt
创建新文件:
如果指定的文件不存在,touch命令会创建一个新文件,并设置其时间戳:
bash
touch newfile.txt
同时修改多个文件的时间:
你可以一次性修改多个文件的时间戳:
bash
touch -t 202310101010 file1.txt file2.txt file3.txt
请注意,你可能需要具有相应文件的写权限才能修改其时间戳。
此外,如果你使用的是符号链接文件,touch命令默认会修改链接指向的目标文件的时间戳,而不是链接文件本身的时间戳。如果你想要修改符号链接文件的时间戳,可以使用-h选项:
bash
touch -h -t 202310101010 symlink.txt
这将修改符号链接symlink.txt本身的访问时间和修改时间。