Transfered from Linux Config:

Question:

Give the exact command that creates a new subdirectory called TEMP?

Answer:
Creating directories on a linux system is done by use of mkdir command.
NOTE: linux is case sensitive. Therefore, temp and TEMP are two distinct directories.

Code:
mkdir TEMP
The command above will create a directory called TEMP within your current working directory.

Code:
mkdir /tmp/TEMP
will create a TEMP directory as a subdirectory of /tmp

Code:
mkdir -p /tmp/test/TEMP
will create a test as a subdirectory of /tmp/ and TEMP directory as a subdirectory of /tmp/test