码迷,mamicode.com
首页 > 系统相关 > 详细

Shell中find中的atime、ctime、mtime的区别

时间:2018-11-06 17:41:35      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:文件   last   表示   读取文件   用法   执行   shel   odi   minutes   

Shell中find中的atime、ctime、mtime的区别

find用法:


-atime n File was last accessed n*24 hours ago. 访问(读取文件或执行文件)

-ctime n File’s status was last changed n*24 hours ago. 写入修改 更改属主

-mtime n File’s data was last modified n*24 hours ago. 文件状态被修改

-amin n File was last accessed n minutes ago. 这是按分钟来算的一般不用

-cmin n File’s status was last changed n minutes ago.

关于+n还是-n:


+n for greater than n, #N天以外的,N天前的

-n for less than n #N天以内的

n for exactly n #正好的
# find . -ctime 6   表示刚好第6天
# find . -ctime +6  表示第6天以外
# find . -ctime -6  表示第6天以内

Shell中find中的atime、ctime、mtime的区别

标签:文件   last   表示   读取文件   用法   执行   shel   odi   minutes   

原文地址:https://www.cnblogs.com/jiqing9006/p/9916370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!