使用shell脚本清理日志可以通过以下步骤进行:
find /path/to/logs -name "*.log" -mtime +7
rm /path/to/logs/logfile.log
crontab -e
例如,每天凌晨2点执行脚本,可以添加以下行到crontab文件中:
0 2 * * * /path/to/clean_logs.sh
需要注意的是,清理日志是一个有风险的操作,务必确认删除的文件是正确的,并备份重要的日志文件。