파일, 디렉토리 권한 설정.
- 하위 모든 파일 권한 설정.
find /path/to/location -type f -print0|xargs -0 chmod 644
- 하위 모든 디렉토리 권한 설정.
find /path/to/location -type d -print0 |xargs -0 chmod 755
- 하위 모든 파일&디렉토리 권한설정.
chmod -R 644 /path/to/location
winaero.com/run-chmod-separately-for-files-and-directories/
'Linux' 카테고리의 다른 글
[linux] ssh 설치 및 실행. (0) | 2020.09.01 |
---|---|
[Linux] 18.04 고정IP 설정 (0) | 2020.08.10 |
[Linux] shellscript 다음 줄 이어서 작성 (0) | 2019.04.15 |
[Linux] convert single line to multiple line (0) | 2019.04.01 |
[Linux] 윈도우 작성파일 리눅스에서 에러나는 경우 '\r': command not found (0) | 2019.03.26 |