3 find .
-name '*.o' -type f
-exec rm -f {} \
;
4 find .
-name '*.a' -type f
-exec rm -f {} \
;
5 find .
-name '*.so' -type f
-exec rm -f {} \
;
6 find .
-name '*.dll' -type f
-exec rm -f {} \
;
9 find .
-type f
-exec chmod 644 {} \
;
10 find .
-type d
-exec chmod 755 {} \
;
11 find .
-name '*.sh' -exec chmod 755 {} \
;