Halaman manual adalah sumber informasi terbaik yang dapat Anda temukan ... dan ada di ujung jari Anda: man mkdir
menghasilkan ini tentang -p
switch:
-p, --parents
no error if existing, make parent directories as needed
Contoh kasus penggunaan: Asumsikan saya ingin membuat direktori hello/goodbye
tetapi tidak ada:
$mkdir hello/goodbye
mkdir:cannot create directory 'hello/goodbye': No such file or directory
$mkdir -p hello/goodbye
$
-p
menciptakan keduanya, hello
dangoodbye
Ini berarti bahwa perintah akan membuat semua direktori yang diperlukan untuk memenuhi permintaan Anda, tidak menampilkan kesalahan apa pun jika direktori tersebut ada .
Soal rlidwka
, Google memiliki memori yang sangat bagus untuk akronim :). Pencarian saya menghasilkan ini misalnya: 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.
Karenanya rlidwka
berarti: Semua izin aktif .
Perlu disebutkan, seperti yang ditunjukkan @Keithompson di komentar, bahwa tidak semua sistem Unix mendukung ACL. Jadi mungkin rlidwka
konsep tersebut tidak berlaku di sini.
man mkdir
akan menjawab pertanyaan Anda. Adapun "rlidwka", saya tidak tahu; Anda harus memberi kami lebih banyak konteks.