Basics Linux Commands,
Part 2
Command to Create a Directory
mkdir <directory-name>
mkdir -v <directory-name>
mkdir command is used to create directory in Linux
-v, --is used to print the action that is performed
Command to Create a Nested Directory (A/B/C/D/E)
mkdir -p A/B/C/D/...
deepeshmlgupta.hashnode.dev2 min read