man 페이지는 당신이 찾을 수있는 최고의 정보 소스입니다 ... 그리고 당신의 손끝에 있습니다 : 스위치 man mkdir
에 대해 이것을 산출합니다 -p
:
-p, --parents
no error if existing, make parent directories as needed
사용 사례 예 : 디렉터리를 만들고 hello/goodbye
싶지만 존재하지 않는다고 가정 합니다.
$mkdir hello/goodbye
mkdir:cannot create directory 'hello/goodbye': No such file or directory
$mkdir -p hello/goodbye
$
-p
만들어 모두 hello
와goodbye
즉 , 명령이 요청을 수행하는 데 필요한 모든 디렉토리를 생성하고 해당 디렉토리가있는 경우 오류를 반환하지 않습니다 .
에 대해 rlidwka
Google은 약어에 대한 아주 좋은 메모리를 가지고 있습니다. :). 내 검색 결과가 다음과 같습니다. http://www.cs.cmu.edu/~help/afs/afs_acls.html
Directory permissions
l (lookup)
Allows one to list the contents of a directory. It does not allow the reading of files.
i (insert)
Allows one to create new files in a directory or copy new files to a directory.
d (delete)
Allows one to remove files and sub-directories from a directory.
a (administer)
Allows one to change a directory's ACL. The owner of a directory can always change the ACL of a directory that s/he owns, along with the ACLs of any subdirectories in that directory.
File permissions
r (read)
Allows one to read the contents of file in the directory.
w (write)
Allows one to modify the contents of files in a directory and use chmod on them.
k (lock)
Allows programs to lock files in a directory.
따라서 rlidwka
의미 : 모든 권한에 .
@KeithThompson이 주석에서 지적했듯이 모든 Unix 시스템이 ACL을 지원하는 것은 아니라는 점을 언급 할 가치가 있습니다. 그래서 아마도 rlidwka
개념이 여기에 적용되지 않을 것입니다.
man mkdir
당신의 질문에 대답 할 것입니다. "rlidwka"에 관해서는 모르겠습니다. 더 많은 맥락을 알려 주셔야합니다.