Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
paip
/
script
/
weight
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//paip/script/weight/clean_log.sh
#!/bin/bash #----------------------------------- # 삭제 주기 : 매일 오전 00시 01분 # 삭제일 : 30일이 지난 압축된 로그 # 등록 : 1 0 * * * /gate/script/weight/clean_log.sh #----------------------------------- # change working dir cd /gate/script/weight # Rename logs find /gate/script/weight/ -name "log_chicken_rest_api.log" -exec cp {} log_chicken_rest_api.log.`date -u +\%Y\%m\%d` \; > /gate/script/weight/log_chicken_rest_api.log delete_file=$(find /gate/script/weight -name "log_chicken_rest_api.log.*" -mtime +30) time_stamp=`date +%Y/%m/%d/%H:%M` if [ ${#delete_file} != 0 ]; then find /gate/script/weight -name "log_chicken_rest_api.log.*" -mtime +30 -exec rm -f {} \; echo "(${time_stamp})Delete old chicken_rest_api log : ${delete_file}" >> /gate/script/weight/cron.log else echo "(${time_stamp})Delete old chicken_rest_api log : None" >> /gate/script/weight/cron.log fi