查找上次按时间修改的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查找上次按时间修改的文件相关的知识,希望对你有一定的参考价值。

  1. # Search for files modified before the past n days:
  2. # find path -mtime -n
  3. # files modified within the last 7 dats
  4. find . -mtime -7
  5. # Search for files modified before the past n days:
  6. # find path -mtime +n
  7. find . -mtime +3

以上是关于查找上次按时间修改的文件的主要内容,如果未能解决你的问题,请参考以下文章