What mkdir -p does
Create nested folders in one go.
mkdir-pproject/src
mkdir— command — create a folder-p— flag — create nested foldersproject/src— argument: a file, a folder, or text
What it does when you run it
$ mkdir -p project/src $ ls project src
Run it yourself
The same files. Nothing here can break, and nothing leaves your browser.
Where you use it
Explain other commands
Written by Mikhail Kuzmitskii