how to use mkdir command in ubuntu code example
Example 1: how to make directory in ubantu
mkdir "NewDirectory" && cd "$_"
Example 2: mkdir command
#usage:
mkdir <name>
#also it can be abbreviated to:
md <name>#in cmd(windows)
#it creates a folder with name <name>