欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux定时清理日志

程序员文章站 2022-03-25 11:45:35
...

clearlog.sh

#!/bin/bash
# 清理30天前日志
find /app/logs -mtime +30 -type f -name *.log.gz -exec rm -f {} \;
相关标签: linux