mkdir
for filesystem
Create directories, with intermediary directories if required using uutils/coreutils mkdir.
Signature
> mkdir {flags} ...rest
Flags
--verbose, -v
: print a message for each created directory.
Parameters
...rest
: The name(s) of the path(s) to create.
Input/output types:
input | output |
---|---|
nothing | nothing |
Examples
Make a directory named foo
> mkdir foo
Make multiple directories and show the paths created
> mkdir -v foo/bar foo2