일정_날짜가_지난_로그파일_삭제

일정 날짜가 지난 로그파일 삭제

#!/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

로그인하면 댓글을 남길 수 있습니다.
  • 일정_날짜가_지난_로그파일_삭제.txt
  • 마지막으로 수정됨: 2020/04/08 03:23
  • 저자 koov