The Linux command to create 2 levels of directories is

a: mkdir - -parent level-1/level-2
b: mkdir - -l level-1/level-2
c: mkdir -l level-1/level-2
d: mkdir -hierarchy level-1/level-2
e: mkdir -p level-1 level-2


a: mkdir - -parent level-1/level-2

Computer Science & Information Technology

You might also like to view...

The code for implementing the operation void push(String x) can be written as

A stack based on a linked list is based on the following code ``` class Node { String element; Node next; Node(String el, Node n) { element = el; next = n; } } Node top = null; ``` A) top = new Node(x, top); B) if (top == full) throw new RuntimeException("Overflow"); else top = new Node(x, top); C) top.add(x); D) top = add(Node x);

Computer Science & Information Technology

What are the primary traits that are used to classify malware?

What will be an ideal response?

Computer Science & Information Technology

Facebook is second only to LinkedIn for job hunters and for employers seeking to fill new positions

Indicate whether the statement is true or false

Computer Science & Information Technology

Use the ____ widget when you want to organize information into logical categories and let users display one category at a time.

A. Accordion B. Dataset C. Tabs D. Dialog

Computer Science & Information Technology