How do you make a bin directory

780 views Asked by At

How do I make a bin directory in the terminal

1

There are 1 answers

0
IceMan On

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.