일정 날짜가 지난 로그파일 삭제
#!/bin/bash LOG_DIRS=( "/DATA/LOGS/test1" "/DATA/LOGS/test2" ) for target in ${LOG_DIRS[*]} do find $target -type f -mtime +365 -exec rm '{}' \; #find $target -type f -name "server.log*" -mtime +365 -exec rm '{}' \; done
로그인하면 댓글을 남길 수 있습니다.