umkdir
for filesystem
Create directories, with intermediary directories if required using uutils/coreutils mkdir.
Signature
> umkdir {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
> umkdir foo
Make multiple directories and show the paths created
> umkdir -v foo/bar foo2