Unix 查找命令选项之间的区别是什么-时间?

Unix 查找命令选项之间的区别是什么-时间?,unix,Unix,我无法理解“find”命令的-atime和-mtime选项之间的区别。手册页对它们给出了相同的定义 atime is the file access time. mtime is the file modify time. 还有ctime ctime和mtime将是相同的,除非只更新文件属性(如所有权)。在这种情况下,只更新ctime。在Linux/unix文件系统中 文件有三次。即访问、修改和更改时间。 访问和修改时间之间存在差异 访问时间是文件的最后一次访问 修改时间是在该文件中完成的

我无法理解“find”命令的-atime和-mtime选项之间的区别。手册页对它们给出了相同的定义

atime is the file access time.  
mtime is the file modify time.
还有
ctime


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

在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.
更改时间是在文件属性(如更改模式和该文件的所有权)中进行的最后一次修改

-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.

对我得到了答案。谢谢你,卡提基安。