Command: mkdir
Create a directory.
mkdir -p ~/playground
-p means parent directories are created if needed and an existing directory is not an error.
Linux FoundationsmkdirCreate a directory.
mkdir -p ~/playground
-p means parent directories are created if needed and an existing directory is not an error.