linux following modification time of all files in the directory

Time to view the file:
SATA test.txt

All files directory update time:
Find ./* -type -exec Touch F {} \;

All directory update time list below:
Find ./* -type -exec Touch D {} \;

Modify a file's date and time:
Touch -d "2020-11-11 11:00:00" test.txt

Guess you like

Origin blog.51cto.com/7794482/2444531