标签:权限 bubuko text 文件系统 分享图片 style class inf type
大家在使用find命令的时候往往会使用它的 -name 或者 -xtime,在这里就说下他的xtime。
UNIX/Linux文件系统每个文件都有三种时间戳:
针对时间戳,还会有+day、-day、day 三个时间点如下图:
搜索最近三天内被访问过的所有文件 find . -type f -atime -3 搜索恰好在三天前被访问过的所有文件 find . -type f -atime 3 搜索超过三天内被访问过的所有文件 find . -type f -atime +7 搜索访问时间超过10分钟的所有文件 find . -type f -amin +10 找出比file.log修改时间更长的所有文件 find . -type f -newer file.log
标签:权限 bubuko text 文件系统 分享图片 style class inf type
原文地址:https://www.cnblogs.com/Star-Haitian/p/8990841.html