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」については、私にはわかりません。あなたは私たちにもう少しコンテキストを与える必要があります。