Страницы руководства - лучший источник информации, который вы можете найти ... и всегда у вас под рукой: 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
, у гугла очень хорошая память на аббревиатуры :). Мой поиск вернул это, например: 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", я понятия не имею; вам нужно дать нам больше контекста.