Frage 1
Frage
Select all the applications that provide access to the Command Line Interface (CLI)?
Antworten
-
opera
-
Virtual Terminal
-
Terminal
-
firefox
Frage 2
Frage
Which environment variable contains a list of directories that is searched for commands to execute?
Frage 3
Frage
Select the command that can report the location of a command:
Frage 4
Frage
A pair of single quotes ( ‘ ) will prevent the shell from interpreting any metacharacter.
Frage 5
Frage
A pair of double quotes ( ” ) will prevent the shell from interpreting any metacharacter.
Frage 6
Frage
Using a pair of back quotes ( ` ) will cause a shell to execute the back-quoted text as a command and substitute the output back into the original command.
Frage 7
Frage
Which of the following are glob characters?
Frage 8
Frage
The semicolon “;” can be used to separate multiple commands to be executed in order.
Frage 9
Frage
The double ampersand characters ( && ) are used to separate commands to be executed conditionally, where if the command to the left of the ampersands fails, then the command to the right of the ampersands will be executed.
Frage 10
Frage
To be able to output messages to the screen, use the [blank_start]echo[blank_end] command:
Frage 11
Frage
The [blank_start]history[blank_end] command will print a list of the commands that you’ve previously executed.
Frage 12
Frage
To execute the same command as previously executed five commands ago, you would type:
Frage 13
Frage
The shell program interprets the commands you type into the terminal, into instructions that the Linux operating system can execute.
Frage 14
Frage
The acronym CLI stands for:
Frage 15
Frage
Traditional UNIX command options used a single dash, like -a; [blank_start]GNU[blank_end] command options use two dashes like –all.
Frage 16
Frage
The acronym GNU stands for:
Antworten
-
Gnu’s Not Unix
-
Good News Unix
-
Gnu’s Nearly Unix
-
Go Next Unit
Frage 17
Frage
The main purpose of using glob characters is to be able to provide a command a list of filenames.
Frage 18
Frage
What one character treats the character that follows it as if it was surrounded by single quotes?