unix – “find command -mtime 0”没有得到我期望的文件

前端之家收集整理的这篇文章主要介绍了unix – “find command -mtime 0”没有得到我期望的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图找到一个0天的文件.以下是我为测试它而执行的步骤
$ls
$ls -ltr
total 0
$touch tmp.txt
$ls -ltr
total 0
-rw-r-----   1 tstUser tstUser           0 Feb 28 20:02 tmp.txt
$find * -mtime 0
$
$find * -mtime -1
tmp.txt
$

为什么’-mtime 0’没有给我这个文件

‘-mtime 0’和’-mtime -1’之间的确切区别是什么?

我确定必须有其他方法可以在unix中找到0天的文件,但我很好奇这个’-mtime’实际上是如何工作的.

-mtime n
          File's data was last modified n*24 hours ago.  See the  comments
          for -atime to understand how rounding affects the interpretation
          of file modification times.

因此,-mtime 0将等于:“文件的数据是在0小时前修改的.
虽然-mtime 1将是:“文件的数据最后修改时间为24小时前”

编辑:

Numeric arguments can be specified as

   +n     for greater than n,-n     for less than n,n      for exactly n.

所以我猜-1会在过去24小时内被修改,而1则恰好是一天.

原文链接:https://www.f2er.com/bash/384495.html

猜你在找的Bash相关文章