To make a folder in Linux or Unix, you can use the mkdir
command.
To create a new folder, run the following command:
refer to:lautturi.commkdir <folder-name>
Replace <folder-name>
with the name of the folder you want to create.
For example, to create a folder called "documents", run the following command:
mkdir documents
This will create a new folder with the name "documents" in the current directory.
To create a folder with a specific name in a specific location, specify the path to the location as an argument to the mkdir
command. For example, to create a folder called "documents" in the /home
directory, run the following command:
mkdir /home/documents
That's it! You now know how to make a folder in Linux or Unix.