답변:
에서 http://en.wikipedia.org/wiki/File_system_permissions#Octal_notation :
0 --- no permission
1 --x execute
2 -w- write
3 -wx write and execute
4 r-- read
5 r-x read and execute
6 rw- read and write
7 rwx read, write and execute
첫 번째 숫자는 소유자를 나타내고 두 번째 숫자는 그룹을 나타내고 세 번째 숫자는 모두를 나타냅니다. 따라서 654는 소유자에 대한 읽기 및 쓰기, 그룹에 대한 읽기 및 실행 및 다른 모든 사람에 대한 읽기만 의미합니다.
의 약자입니다 -rw-r-xr--
. chmod 매뉴얼 페이지 도 참조하십시오 .
man chmod
쉘에서