1./app/logs/ 裏面的日誌只保留7天的(apache天天生成一個文件)

1./app/logs/ 裏面的日誌只保留7天的(apache天天生成一個文件) 

 [root@centos6 ~]# vi /server/scripts/del.shapache

裏面加上centos

find /app/logs -type f -name "access*.log" -mtime +7 | xargs rm –f;app

或者加上spa

find /app/logs -type f -name "access*.log" -mtime +7 exec rm –f {} \;日誌

[root@centos6 ~]# crontab –eserver

裏面加上crontab

00 00 * * * /bin/sh /server/scripts/del.sh > /dev/null 2>&1ip

-mtime 是指修改時間  +7 是指7天以前的  -7 是指最近7天的im

-atime 是訪問時間tab

-ctime 是改變時間

相關文章
相關標籤/搜索