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

时间:2009-02-12 23:09:27

标签: bash shell command-line cron

我有这个命令,我目前每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

我尝试过你的测试,你建议的好事。我得到了一个空洞的结果。我希望删除所有 OLDER 超过60分钟的文件!我怎样才能做到这一点??我的命令实际上是这样做的吗?

1 个答案:

答案 0 :(得分:138)

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