chmod 폴더만 or 파일만 권한변경

Linux
#파일만find ./ -type f -exec chmod -v 755 {} \; #폴더만find ./ -type d -exec chmod -v 755 {} \; #원하는 파일명만find ./ -type d -name 파일이름 -exec chmod -v 755 {} \;#해당파일을 제외하고find ./ -type d \! -name 파일이름 -exec chmod -v 755 {} \; #폴더만find ./ -type d -name 폴더이름 -exec chmod -v 755 {} \;#폴더를 제외하고find ./ -type d \! -name 폴더이름 -exec chmod -v 755 {} \; ※ {} 과 \ 사이에는 꼭 공백을 넣어야 합니다.
Read More