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