컴공생의 다이어리
[Ubuntu] chmod와 chown 하위 디렉토리와 파일들까지 적용하기 본문
[Ubuntu] chmod와 chown 하위 디렉토리와 파일들까지 적용하기
하위 디렉토리와 파일들까지 chmod 혹은 chown 명령어에 대해 한번에 적용시키고 싶다면 -R(recursive) 옵션을 사용하면 한번에 적용할 수 있다.
chmod -R [권한관련] [디렉토리명 or 파일명]
# example
chmod -R +x test
chown -R [owner[:group]] [디렉토리명 or 파일명]
# example
chown -R cd18:korea test
https://nachwon.github.io/shell-chmod/
https://twpower.github.io/64-use-chown-to-subfiles-and-subfolders
728x90
'Development > 기타' 카테고리의 다른 글
[Ubuntu] Nginx 설정 (0) | 2022.12.20 |
---|---|
[Shell script] 쉘 스크립트 명령어 성공 여부 조건문 처리 (0) | 2022.12.05 |
[리눅스, Linux] tree 명령어 (0) | 2022.09.30 |
MobaXterm(모바엑스텀) 설치 (2) | 2022.04.04 |
소프트웨어에서 Validation & Verification (0) | 2022.03.16 |
Comments