查看文件的日期,按着年月日时分秒的格式
ll --time-style=+"%Y-%m-%d %H:%M:%S"
查找一个时间段的文件
find /home/eqics/ -newermt '1998-01-01' ! -newermt '2021-11-16'
更改文件的创建时间
touch -d "2022-02-01 10:22:21" filename
递归更改文件的创建时间
find ./ * -exec touch -d "2022-02-01 10:22:21" {} /;
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/277567.html