0% found this document useful (0 votes)
5 views1 page

mkdir Command Syntax Guide

Uploaded by

wolfcosmic5879
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

mkdir Command Syntax Guide

Uploaded by

wolfcosmic5879
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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

You might also like