KENSEI IT BLOG
특정파일 크기 이상 삭제하기 검색find ./ -type f -size +50M 삭제find ./ -type f -size +50M -exec rm -f {} \; 파일생성 시점 삭제하기30일 이상된 파일 검색find ./ -ctime +31 삭제 find ./ -name "*.sql" -ctime +31 -exec rm -f {} \; 디렉토리 구조만 남겨두고 삭제하기find . -type f | xargs rm