리눅스
[find] 특정 디렉토리, 파일 삭제
누리몬
2016. 4. 14. 11:11
$ find . -name '*.dir' -type d -exec rm -rf {} \;
$ find . -name '.content.xml' -exec rm {} \;