mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 22:41:36 +00:00
22 lines
569 B
Plaintext
22 lines
569 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mkdir
|
|
|
|
> Create directories and set their permissions.
|
|
> More information: <https://www.gnu.org/software/coreutils/mkdir>.
|
|
|
|
- Create specific directories:
|
|
|
|
`mkdir {{path/to/directory1 path/to/directory2 ...}}`
|
|
|
|
- Create specific directories and their parents if needed:
|
|
|
|
`mkdir {{-p|--parents}} {{path/to/directory1 path/to/directory2 ...}}`
|
|
|
|
- Create directories with specific permissions:
|
|
|
|
`mkdir {{-m|--mode}} {{rwxrw-r--}} {{path/to/directory1 path/to/directory2 ...}}`
|