How do I make a bin directory in the terminal
Asked
Active
Viewed 566 times
-2
-
Linux? Windows? – haronaut Mar 20 '19 at 19:07
-
Give more information, please. Are you talking about bin in the root or what? The answer is ‘mkdir bin’. – Igor Tulmentyev Mar 20 '19 at 19:14
1 Answers
0
Assuming that you mean you want to create a directory FROM the terminal, and in a Linux based system, then open your terminal and type in the following -
mkdir your_directory_name
as simple as this. You have options with mkdir
.
You should really check out the man page for the mkdir (or any command for that matter). All you have to do is man mkdir
.

IceMan
- 123
- 2
- 11