Answers for "make directory in linux"

4

bash make multiple directories in current directory

# Basic syntax:
mkdir directory1 directory2 directory3 # Make directory1, 2, and 3 in the
#	current directory
Posted by: Guest on October-04-2020
11

linux create folder

mkdir [folder_name]
Posted by: Guest on December-29-2020
1

linux create directory with permissions

mkdir –m777 DirM
Posted by: Guest on August-13-2020
5

create folder in terminal

mkdir *Name of Directory*
Posted by: Guest on November-23-2020
5

create directory linux

mkdir /tmp/newdir
Posted by: Guest on May-29-2020
2

make directory in linux

mkdir [option] dir_name
Posted by: Guest on January-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language