이거 어떻게 하는것인지 ..몰라서여...어려워서..
글쓴이: 익명 사용자 / 작성시간: 수, 2001/09/26 - 5:47오후
write a Csh script which recursively sets file and directory access
permissions.
Usage of this Csh script
rchmod file_permissions dir_permissions file_or_dir_names
Assumption
This Csh script would be used after the command is in the path and
rehashed.
for example
%rchmod u=rw,go=r u=rwx,go=rx *
Result of above command
The above command sets the permission of all the plains files at the
current working directory and its subdirectories as
rw for user , r for group and others.
The above command also sets the permissions of all the sub-directories
of the current working directory as rwx for user
, rx for group and others.
Forums:
해석을 해달라는 소리신가요?
무엇을 물어보는지 모르겠네요. --;
적혀있는건 재귀적인 방법으로 파일과 디렉토리 퍼미션(접근 권한)을
수정하는 법에 대한 것입니다.
csh이라는 쉘의 명령이라고 되어있네요.
예제로 나와있는
% rchmod u=rw,go=r u=rwx,go=rx *
의 뜻은 rchmod를 실행하는데 u=rw(User는 Read, Write가능하게), go=r
(Group과 Other는 Read가능하게)만든다는 소리고(파일에 대해서)
두번째는 디렉토리에 대해서 u=rwx(User는 Read,Write,eXcute), go=rx
(Group과 Other는 Read,eXcute) 그리고 마지막 '*'는 모든 파일과 디렉토리에
대해서라는 소리죠.
이것은
% csh
이라는 것을 먼저 실행한 후에 명령을 내려주어야 할 것같네요.
이런 걸 원하신게 맞나요? --;
댓글 달기