Linux Command: mkdir
Description: The 'mkdir' command is used to create one or more directories.
Syntax: mkdir [OPTION] DIRECTORY_NAME
Common Options:
-p : create parent directories if not existing
-v : print a message for each created directory
Examples:
mkdir new_folder → create a new directory
mkdir -p dir1/dir2 → create nested directories