how to create mkdir
0
0

REGISTER! Share and grow knowledge of the world! We want to connect educated people with those who need it, to bring them together and to be able to share their knowledge with everyone. Join the Questions & Answers here.
Please sign in to your account!
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
mkdir
is a command used to create a new directory (folder) in a Unix-like operating system, such as Linux or macOS.To use
mkdir
, open a terminal and type the following command:mkdir directory_name
Replace “directory_name” with the name of the new directory you want to create.
For example, to create a directory called “my_folder”, type:
mkdir my_folder
You can also create nested directories by using the “-p” option. For example, to create a directory called “my_folder” inside a directory called “parent_folder”, type:
mkdir -p parent_folder/my_folder
This will create both the parent directory and the nested directory.