파일만
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 {} \;
'알고보면 쓸데있는 신비한 잡학IT노트' 카테고리의 다른 글
HP (HPE) 서버 시리얼 조회 페이지 (0) | 2021.02.02 |
---|---|
centos 네트워크 모니터링 vnstat (0) | 2021.01.27 |
Alteon Layer 4 Switch Manual (0) | 2021.01.04 |
nginx https -> http 리다이렉트 (301 return) (0) | 2021.01.04 |
haproxy 권장 사양(스펙) (0) | 2021.01.01 |