출처: http://www.cyberciti.biz/faq/linux-unix-how-to-find-and-remove-files/
Linux or UNIX - Find and remove file syntax
To remove multiple files such as *.jpg or *.sh with one command find, use
find . -name "FILE-TO-FIND"-exec rm -rf {} \;
OR
find . -type f -name "FILE-TO-FIND" -exec rm -f {} \;
The only difference between above two syntax is that first command can remove directories as well where second command only removes files.
'Archive' 카테고리의 다른 글
Word Cloud 생성기 (0) | 2012.09.08 |
---|---|
SVN Branch & Merge 헷갈릴 때 참고할만한 글 (0) | 2012.09.06 |
Java Standard Out을 파일 출력으로 변경 (Standard Stream의 Redirection) (0) | 2012.09.01 |
HashMap에서 Integer를 key로 사용할 때 알아두어야 할 점 (0) | 2012.08.30 |
Java transient 키워드에 대해 몰랐던 사실 (0) | 2012.08.26 |