您好,登錄后才能下訂單哦!
這篇文章主要講解了“Shell怎么實(shí)現(xiàn)自動化壓縮處理日志文件”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Shell怎么實(shí)現(xiàn)自動化壓縮處理日志文件”吧!
Shell處理日志,自動保留30天的日志,如果超過14天的日志就自動壓縮為gz格式存儲下來,這樣可以節(jié)省磁盤空間,也是定時備份日志,我這里是以日志文件舉例的,其它的需求也可以自己根據(jù)腳本內(nèi)容做調(diào)整。
#!/bin/sh################################################################# (c) Copyright 2012 Eric. All rights reserved.## Logs expired 30 days.## *cron# 1 6 * * * /bin/sh /var/app/shell/logs_arrange.sh > /var/app/shell/cron_logs_arrange.log###################################################################TODAY=`date +%s`# how many days ago will the logs to be zipPK_DAYS_AGO=14 PK_DATEDIFF=`expr ${PK_DAYS_AGO} \* 86400` PK_EXT=gz# how many days ago will the logs to be removedDAYS_AGO=30 DATEDIFF=`expr ${DAYS_AGO} \* 86400`cleanDir(){ directory=$1if [[ -d ${directory} ]];thenfor file in `ls -1 ${directory} | grep -v '.log$'`;doctime=`stat -c %Y ${directory}/${file}` timediff=`expr ${TODAY} - ${ctime}` extname=`ls ${directory}/${file} | awk -F '.' '{printf $NF}'`if [[ ${extname} != ${PK_EXT} ]] ; thenif [[ -f ${directory}/${file} ]] ; thenzipta=`expr ${timediff} - ${PK_DATEDIFF}`if [[ ${zipta} -gt 0 ]] ; thenecho "Package ${directory}/${file}"gzip -f ${directory}/${file} > ${directory}/${file}.${PK_EXT}fififiif [[ -f ${directory}/${file} ]];thendelta=`expr ${timediff} - ${DATEDIFF}`if [[ ${delta} -gt 0 ]];thenecho "Removing ${directory}/${file}"rm -rf ${directory}/${file}fifidonefi} cleanDir "/var/app/logs/webapps/admin"cleanDir "/var/app/logs/webapps/api"cleanDir "/var/app/logs/webapps/pos"
感謝各位的閱讀,以上就是“Shell怎么實(shí)現(xiàn)自動化壓縮處理日志文件”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Shell怎么實(shí)現(xiàn)自動化壓縮處理日志文件這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。