Mkdir:
In this session we are going to know about how to create a single directory or multilevel directories or multiple directories. mkdir is the command to do these tasks.
Syntax:
$mkdir <options> <dirname>
Ex:
$ mkdir -p A/B/C/D/E/F (multilevel directories, one directory under another directory)
$ mkdir A/B C (multiple directories, under A 2 directories(B and C))
In this session we are going to know about how to create a single directory or multilevel directories or multiple directories. mkdir is the command to do these tasks.
Syntax:
$mkdir <options> <dirname>
Ex:
$ mkdir -p A/B/C/D/E/F (multilevel directories, one directory under another directory)
$ mkdir A/B C (multiple directories, under A 2 directories(B and C))