2022년 7월 12일 화요일

raspberry pi /var/log auto Delete logfile

vim DeleteLog.sh


==========================================

#!/bin/sh


#생성 된지 7일이 지난 로그를 삭제하는 Script


/usr/bin/find /log/ -type f -mtime +7 -exec rm {} +

==========================================


:wq!


chmod 744 DeleteLog.sh


/etc/crontab  

00 00 * * * /install/cron/DeleteLog.sh


:wq!


댓글 없음:

댓글 쓰기