summaryrefslogtreecommitdiff
path: root/Base/usr/share/man/man1/mkdir.md
diff options
context:
space:
mode:
Diffstat (limited to 'Base/usr/share/man/man1/mkdir.md')
-rw-r--r--Base/usr/share/man/man1/mkdir.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/Base/usr/share/man/man1/mkdir.md b/Base/usr/share/man/man1/mkdir.md
index 0755cb941a..c50befaefb 100644
--- a/Base/usr/share/man/man1/mkdir.md
+++ b/Base/usr/share/man/man1/mkdir.md
@@ -5,17 +5,21 @@ mkdir - create directories
## Synopsis
```**sh
-$ mkdir directories...
+$ mkdir [ options...] directories...
```
## Description
Create a new empty directory for each of the given *directories*.
+## Options
+
+* `-p`, `--parents`: Create parent directories if they don't exist
+
## Examples
```sh
-$ mkdir /tmp/foo
+$ mkdir -p /tmp/foo/bar
```
## See also