find . -type f -name "*.psd" -exec rm -f {} \;

 -type f ==> 파일명

 -type d ==> 디렉토리

 

 -name "찾을 파일명"

 

 -exec 추가실행

 

 -rm -f () \;  ==> 삭제 명령