作者:good7758 | 来源:互联网 | 2023-05-18 00:46
查找10天前的日志并删除#!binbashsourceetcprofile##################删除日志###################findusrlocala
查找10天前的日志并删除
#!/bin/bash
source /etc/profile
##################删除日志###################
find /usr/local/apache-tomcat-7.0.68/logs/ -type f -mtime +10 -exec rm -rfv {} \;
find /usr/local/apache-tomcat-8.0.32-solr/logs/ -type f -mtime +10 -exec rm -rfv {} \;
find /usr/local/nginx/logs/*log-* -type f -mtime +10 -exec rm -rfv {} \;
find -mtime:mtime表示文件修改时间
find -type f:表示查找文件,排除目录(d)和链接(l)
stat filename:查看文件状态
touch -m -t "0507150202" filename:更新文件的修改时间,-t的格式为 YYMMDDhhmm
// 10天以前所有,不包括第10天当天的文件
$ find -mtime +10 -exec rm -rfv {} \;
// 10天前,当天一天的文件
$ find -mtime 10 -exec rm -rfv {} \;
// 10天内,包括今天的文件,但不包括第10当天的文件
$ find -mtime -10 -exec rm -rfv {} \;