Answers for "make folder linux"

2

nbash creacte new folder

$ cd documents
$ mkdir assignments
$ cd assignments
$ pwd
    /users/jpalomino/documents/assignments
Posted by: Guest on August-13-2020
2

make directory in linux

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

linux create directory

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

how to create a folder in linux

mkdir name_of_folder
Posted by: Guest on June-25-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
0

linux terminal create folder

mkdir mydirectory
Posted by: Guest on March-25-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language