Answers for "linux create directory"

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
0

linux create directory

mkdir ./folderName
Posted by: Guest on March-31-2021
0

linux create directory

$sudo mkdir -m777 newFileName

777 is the permissions given to the file
For more info:( https://www.pluralsight.com/blog/it-ops/linux-file-permissions )
Posted by: Guest on February-01-2021

Code answers related to "linux create directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language