清除/tmp超过3天的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除/tmp超过3天的文件相关的知识,希望对你有一定的参考价值。

Clear files in /tmp directory that are older than three days - terminal/cron
this is a very simple example - could also remove by last access time, etc.
  1. #command line / shell script
  2. sudo find /tmp -depth -type f -atime +3 -exec rm {} ;
  3.  
  4. #crontab
  5. 0 0 * * * /usr/bin/find /tmp -atime +3 -exec /usr/bin/rm {} ;

以上是关于清除/tmp超过3天的文件的主要内容,如果未能解决你的问题,请参考以下文章

如何删除超过1天的文件

超过N天没有访问的文件。

通过从 SQL Server 中的当前日期删除超过 180 天的所有记录来清除

sql SQL命令用于清除超过30天的InfiniteWP已删除站点和活动数据。默认的InfiniteWP表前缀是iwp_,i

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?

当“参数列表太长”时如何删除所有超过 3 天的文件?