Caawiye app
Welcome to Caawiye app, a platform to connect with the social world
or
No apps configured. Please contact your administrator.
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
Caawiye Member
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.