用 man find 可以看到解释 -mtime
-mtime n
File’s data was last modified n*24 hours ago. See the comments for -atime to under-
stand how rounding affects the interpretation of file modification times.
文件的数据是在n*24小时前修改的。
所以,ind -mtime 30 是找到所有在距现在720小时之内被修改过的文件或目录。
N*24+1内表示1*24+24小时以外..
+0才表示0*24+24小时以外
1表示1*24+24到24之间..
0表示0*24+24到0之间..
-1表示0*24+24内,甚至为未来时间
所以,find -mtime +30 表示30*24+24小时以外......即30天以外......
时间: 2024-10-10 06:38:58