what will happen when running the command mkdir DirA/DirB/DirC
Answers
Answered by
8
Answer:
Is these are on Linux and Unix these help in creating four directories.
Answered by
1
It creates three directory or folder when it runs on the terminal of Linux operating system.
Explanation:
- The first directory name is DirA which is created where the terminal current location is stated.
- The second directory name is DirB which is created inside the DirA directory
- The third directory name is DirC which is created inside the DirB directory.
This is because mkdir is a command which is used to create a directory but when DirA exists then DirB and DirC will be created but when DirA and DirB exist on the place which is stated above then only DirC will be created and if all the directory exists then it will give an error.
Learn more:
Command is used to create a file in linux: https://brainly.in/question/6643507
Similar questions