컴공생의 다이어리

[Ubuntu] chmod와 chown 하위 디렉토리와 파일들까지 적용하기 본문

Development/기타

[Ubuntu] chmod와 chown 하위 디렉토리와 파일들까지 적용하기

컴공 K 2022. 11. 30. 03:00

[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/

 

[Shell] chmod - 파일 및 폴더의 권한 설정

chmod 셸 명령어는 파일 또는 폴더의 권한을 변경할 때 사용한다.

nachwon.github.io

https://twpower.github.io/64-use-chown-to-subfiles-and-subfolders

 

[Linux] chown과 chmod를 하위 폴더와 하위 파일들에 적용하기

Practice makes perfect!

twpower.github.io

 

728x90
Comments