Man sayfaları, bulabileceğiniz en iyi bilgi kaynağıdır ... ve parmaklarınızın ucunda: geçiş man mkdir
hakkında şunu verir -p
:
-p, --parents
no error if existing, make parent directories as needed
Kullanım örneği örneği: Dizin oluşturmak istediğimi hello/goodbye
ancak hiçbirinin olmadığını varsayın :
$mkdir hello/goodbye
mkdir:cannot create directory 'hello/goodbye': No such file or directory
$mkdir -p hello/goodbye
$
-p
oluşturulan hem hello
vegoodbye
Bu , komutun, isteğinizi yerine getirmek için gerekli olan tüm dizinleri oluşturacağı ve söz konusu dizin olması durumunda herhangi bir hata döndürmeyeceği anlamına gelir .
Hakkında rlidwka
, Google'ın kısaltmalar için çok iyi bir hafızası var :). Aramam örneğin şunu döndürdü: 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.
Dolayısıyla şu rlidwka
anlama gelir: Tüm izinler açık .
@KeithThompson'ın yorumlarda belirttiği gibi, tüm Unix sistemlerinin ACL'yi desteklemediğini belirtmekte fayda var. Yani muhtemelen rlidwka
konsept burada geçerli değil.
man mkdir
sorunuzu cevaplayacak. "Rlidwka" konusuna gelince, hiçbir fikrim yok; bize biraz daha bilgi vermeniz gerekecek.