1. 用戶需求:10.0.2.178與10.0.2.187 這兩臺服務器
/app/onesearch/logs 目錄可只保留5天的日誌,default.log 默認要保留文件
/app/AsposeConverter_HTML/Linux/logs 目錄可只保留5天的日誌,默認要保留converter.log文件
2.操做過程
cat /home/vkapp/start.sh
#/bin/bash
#create by xiongchao at 20180305
cd /app/onesearch/logs/
find /app/onesearch/logs/ -type f -mtime +4 -iname "default.log-*" -exec rm -f {} \;
cd /app/AsposeConverter_HTML/Linux/logs/
find /app/AsposeConverter_HTML/Linux/logs/ -type f -mtime +4 -iname "converter.log.*" -exec rm -f {} \;bash
計劃任務腳本:服務器
chmod +x /home/vkapp/start.sh
* * */3 * * /bin/sh /home/vkapp/start.sh >& /dev/nullapp