Caawiye app
Welcome to Caawiye app, a platform to connect with the social world
Don't have an account?Sign Up
Caawiye app
Welcome to Caawiye app, a platform to connect with the social world
Already have an account?Login
Stay connected
M | T | W | T | F | S | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
1 Answers
caawiye Admin
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.