# find path/ -name '*.properties' -exec chmod 644 {} \;
- 설명: path/ 이하의 전 프로퍼티 파일의 퍼미션을 644로 변경한다.
::::: -type d ⇒ 디렉토리의 퍼미션 지정시
::::: -type f  ⇒ 파일의 퍼미션 지정시

참고사이트:
http://ja.wikipedia.org/wiki/Chmod
AND