알고보면 쓸데있는 신비한 잡학IT노트

chmod 폴더 또는 파일 권한 일괄 변경

남차장 2021. 1. 4. 14:20

파일만
find ./ -type f -exec chmod -v 644 {} \;

폴더만
find ./ -type d -exec chmod -v 755 {} \;
해당파일만
find ./ -type d -name 파일이름 -exec chmod -v 755 {} \;

해당파일을 제외하고
find ./ -type d \! -name 파일이름 -exec chmod -v 755 {} casino pa natet \;
해당폴더만
find ./ -type d -name 폴더이름 -exec chmod -v 755 {} \;

해당폴더를 제외하고
find ./ -type d \! -name 폴더이름 -exec chmod -v 755 {} \;