Skip to content
zero2vibecodelearn vibe coding

What mkdir -p does

Create nested folders in one go.

mkdir-pproject/src
  • mkdircommand — create a folder
  • -pflag — create nested folders
  • project/srcargument: 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.

Explain other commands

Written by Mikhail Kuzmitskii