find命令选项有什么区别 - -atime& -mtime?

时间:2014-12-31 06:26:06

标签: unix

我无法理解-atime&和-mtime选项'找到'命令。手册页为它们提供了相同的定义。

2 个答案:

答案 0 :(得分:0)

atime is the file access time.  
mtime is the file modify time.

还有ctime

除非只更新文件属性(如所有权),否则ctime和mtime将相同。在这种情况下,只有ctime会更新。

答案 1 :(得分:0)

在Linux / unix文件系统中,

文件有三次。这是访问,修改和更改时间。 访问和修改时间之间存在差异。

访问时间是文件的最后访问权限。

修改时间是在该文件中完成的最后修改。

更改时间是文件属性中的最后修改,例如更改模式和该文件的所有权。

-atime: It gives the result with the access time of that file or folder.

-mtime: It gives the result with the modified time of that file or folder.