WEB开发网
开发学院操作系统Linux/Unix Linux 定期清理日志脚本 阅读

Linux 定期清理日志脚本

 2012-10-11 16:10:54 来源:WEB开发网   
核心提示: 1、编写清理日志脚本clearlog.sh#!/bin/shfind /newdisk/ss/mg/log -mtime +1 -name "*.log" -exec rm {} \;find /newdisk/ss/msu/log -mtime +1 -name "*.log"

 1、编写清理日志脚本clearlog.sh

#!/bin/sh
find /newdisk/ss/mg/log -mtime +1 -name "*.log" -exec rm {} \;
find /newdisk/ss/msu/log -mtime +1 -name "*.log" -exec rm {} \;

2、给脚本增加可执行权限

我的脚本默认放在/opt/下

chmod 755 /opt/clearlog.sh


3、加入定时执行任务,定时执行脚本
切换到root用户
使用crontab 命令建立定时执行
命令:crontab –e
加入行:*/10 * * * * /opt/clearlog.sh
改行含义为每10分执行/usr/clearlog.sh脚本一次

Tags:Linux 定期 清理

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接