To create a new directory (folder) in Bash, you can use the mkdir
command followed by the desired directory name. Here's the syntax:
mkdir directory_name
For example, if you want to create a directory named documents
, you would run:
mkdir documents
This will create a new directory named documents
in the current location.