Der Man - Pages ist die beste Quelle für Informationen , die Sie finden können ... und ist auf Knopfdruck : man mkdir
ergibt dies über -p
Schalter:
-p, --parents
no error if existing, make parent directories as needed
Anwendungsfallbeispiel: Angenommen, ich möchte Verzeichnisse erstellen, hello/goodbye
aber es gibt keine:
$mkdir hello/goodbye
mkdir:cannot create directory 'hello/goodbye': No such file or directory
$mkdir -p hello/goodbye
$
-p
beide erstellt, hello
undgoodbye
Dies bedeutet, dass der Befehl alle zur Erfüllung Ihrer Anforderung erforderlichen Verzeichnisse erstellt und keinen Fehler zurückgibt, falls dieses Verzeichnis vorhanden ist .
Über rlidwka
, Google hat ein sehr gutes Gedächtnis für Akronyme :). Meine Suche ergab dies zum Beispiel: 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.
Daher rlidwka
bedeutet: Alle Berechtigungen auf .
Wie @KeithThompson in den Kommentaren hervorhob, ist es erwähnenswert, dass nicht alle Unix-Systeme ACL unterstützen. Wahrscheinlich rlidwka
trifft das Konzept hier nicht zu.
man mkdir
wird Ihre Frage beantworten. Was "rlidwka" betrifft, habe ich keine Ahnung; Sie müssen uns mehr Kontext geben.