OS/Linux

리눅스 빈 폴더 삭제

개발근로자 2020. 2. 18. 17:16
반응형

파일 삭제법

find . -type f -empty

find . -type f -empty -delete

디렉토리 삭제법

find . -type d -empty

find . -type d -empty -delete

 

출처: https://pikabu.tistory.com/88

반응형