Create Directories
SH · Navigation & Filessyntax
mkdir [options] directory...example
mkdir -p src/components/auth
mkdir -m 750 secretsNote -p creates the full path including any missing parent directories and will not error if the directory already exists. -m sets permissions at creation time.