1. 程式人生 > >shell命令定時任務

shell命令定時任務

#!/bin/bash
source /etc/profile
#採集和分析統計程式、統計報告郵件傳送應用所在目錄
dcentrePath="/home/crawl/runjar/countmonitor/"
#日誌檔案日期
nowdate=`date '+%Y-%m-%d'`
#呼叫執行jar包的指令碼/home/crawl/runjar/countmonitor/dcentre_mail-1.0.1/bin
 nohup  ${dcentrePath}dcentre_mail-1.0.1/bin/startup.sh >/dev/null 2>&1 &
#刪除日誌檔案
dellog(){
 exec find  ${dcentrePath}/logs/ -mtime +6 -type f |xargs rm -f
}
#刪除7天前的日誌
dellog