Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 302 Bytes

파일-및-폴더-퍼미션을-각각-755,644로-바꾸기.md

File metadata and controls

7 lines (6 loc) · 302 Bytes

파일 및 폴더 퍼미션을 각각 755,644로 바꾸기

find 명령어를 이용하면 다음과 같이 파일 및 폴더 퍼미션을 각각 755, 644로 다르게 지정할 수 있다.

find 시작경로 -type d -exec chmod 0755 {} \;
find 시작경로 -type f -exec chmod 0644 {} \;