Skip to content
GitHub

mkdir


Create the DIRECTORY(ies), if they do not already exist.

mkdir [OPTION] directory
$ mkdir one two

$ ls
one two
$ mkdir -p test/{one,two,three}

$ ls     
test 

$ ls test 
one   three two