使用如下指令:
1、修改指定目录下的所有*.txt文件的日期为当前系统日期
find /yourdir -name "*.txt"|xargs touch
2、将指定目录下的文件时间设置为特定的日期和时间
find /yourdir -name "*.txt"|xargs touch -t 202408290000.00
即将*.txt文件的修改时间设置为2024年8月29日00:00
使用如下指令:
1、修改指定目录下的所有*.txt文件的日期为当前系统日期
find /yourdir -name "*.txt"|xargs touch
2、将指定目录下的文件时间设置为特定的日期和时间
find /yourdir -name "*.txt"|xargs touch -t 202408290000.00
即将*.txt文件的修改时间设置为2024年8月29日00:00