bash – 查找超过1小时的-mtime文件

前端之家收集整理的这篇文章主要介绍了bash – 查找超过1小时的-mtime文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个命令,我目前每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 {} \;

我不确定我使用的十进制数吗?

感谢您的任何更正。

编辑

或者我可以只使用-mmin 60?它是否正确?

EDIT2

我试过你的测试,好东西你建议它。我得到一个空结果。我想要删除所有文件超过60分钟!我如何做到这一点?我的命令实际上是这样吗?

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

从男人找:

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

此外,请务必先测试一下!

... -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.
原文链接:https://www.f2er.com/bash/391278.html

猜你在找的Bash相关文章