mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
317 B
317 B
mkdir
Creates a directory. More information: https://www.gnu.org/software/coreutils/manual/html_node/mkdir-invocation.html.
- Create a directory in current directory or given path:
mkdir {{directory}}
- Create directories recursively (useful for creating nested dirs):
mkdir -p {{path/to/directory}}