我正在写一个bash脚本,需要删除旧文件。
它目前实现使用:
find $LOCATION -name $REQUIRED_FILES -type f -mtime +1 -delete
这将删除超过1天的文件。
然而,如果我需要一天,比如6小时前的更好的分辨率呢?有没有干净利落的方法,比如使用find和-mtime?
我正在写一个bash脚本,需要删除旧文件。
它目前实现使用:
find $LOCATION -name $REQUIRED_FILES -type f -mtime +1 -delete
这将删除超过1天的文件。
然而,如果我需要一天,比如6小时前的更好的分辨率呢?有没有干净利落的方法,比如使用find和-mtime?
当前回答
以下是对我有效的方法(我没有看到上面使用它)
$ find /path/to/the/folder -name '*.*' -mmin +59 -delete > /dev/null
删除所有超过59分钟的文件,同时保持文件夹完整。
其他回答
对于 SunOS 5.10
Example 6 Selecting a File Using 24-hour Mode
The descriptions of -atime, -ctime, and -mtime use the ter-
minology n ``24-hour periods''. For example, a file accessed
at 23:59 is selected by:
example% find . -atime -1 -print
at 00:01 the next day (less than 24 hours later, not more
than one day ago). The midnight boundary between days has no
effect on the 24-hour calculation.
你的查找有-mmin选项吗?它可以让你测试自上次修改以来的分钟数:
find $LOCATION -name $REQUIRED_FILES -type f -mmin +360 -delete
或者可以考虑使用tmpwatch来完成相同的工作。PHJR也在评论中推荐了tmpreaper。
find $PATH -name $log_prefix"*"$log_ext -mmin +$num_mins -exec rm -f {} \;
-mmin表示分钟。
试着看看手册页。
man find
更多类型。
以下是对我有效的方法(我没有看到上面使用它)
$ find /path/to/the/folder -name '*.*' -mmin +59 -delete > /dev/null
删除所有超过59分钟的文件,同时保持文件夹完整。