mkdir
Create the DIRECTORY(ies), if they do not already exist.
Usage
mkdir [OPTION] directory
Examples
Create two separate directories
$ mkdir one two
$ ls
one two
Create directories in a directory
$ mkdir -p test/{one,two,three}
$ ls
test
$ ls test
one three two