🎴 Flashcard Mode

Operating Systems Fundamentals

Card1 / 13
Mastered0
Review0
QuestionClick to flip

How do you create a new directory called "flower"?

AnswerClick to flip back
A
mkdir flower
💡 Explanation:

The mkdir command creates a new directory. The syntax is 'mkdir directoryname'. Other options like makedir, newdir, and crdir are not standard Unix/Linux commands. mkdir can also create nested directories with the -p flag.

Change Mode