标签:find mtime
用 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天以外......
本文出自 “广州linux运维” 博客,请务必保留此出处http://milenovo.blog.51cto.com/10554394/1693221
标签:find mtime
原文地址:http://milenovo.blog.51cto.com/10554394/1693221