os/UNIX_LINUX
log 디렉토리 밑에서 90일이 지난 *.gz 파일을 삭제 처리
공간사랑
2013. 7. 29. 18:53
반응형
#!/bin/sh
find "/log" -type f -name *.gz -ctime 90 | xargs rm
반응형