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

#파일만
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 {} \;

※ {} 과 \ 사이에는 꼭 공백을 넣어야 합니다.

이전글
다음글

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다