Find-mtime 文件超过1小时

我现在每24小时运行一次这个命令。

find /var/www/html/audio -daystart -maxdepth 1 -mtime +1 -type f -name "*.mp3" -exec rm -f {} \;

我想运行它每1小时,并删除文件超过1小时。是这样吗:

find /var/www/html/audio -daystart -maxdepth 1 -mtime **+0.04** -type f -name "*.mp3" -exec rm -f {} \;

我不太确定小数的用法?

谢谢你的纠正。

剪辑

或者我可以使用 -60分钟? 对吗?

编辑2

我试过你的测试,幸好你建议了。结果一无所获。我希望所有的文件 更老比60分钟被删除!我怎么能这样?我的指挥官真的这么做了吗?

200918 次浏览

What about -mmin?

find /var/www/html/audio -daystart -maxdepth 1 -mmin +59 -type f -name "*.mp3" \
-exec rm -f {} \;

From man find:

-mmin n
File's data was last modified n minutes ago.

Also, make sure to test this first!

... -exec echo rm -f '{}' \;
^^^^ Add the 'echo' so you just see the commands that are going to get
run instead of actual trying them first.