Hoofdstuk 4 Flashcards
Select from the following commands those which can report the location of a command: - 4.8
which
A pair of single quotes ( ‘ ) will prevent the shell from interpreting any metacharacter. - 4.11.2
True
A pair of double quotes ( “ ) will prevent the shell from interpreting any metacharacter. 4.11.1
False
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. - 4.11.4
True
Which of the following are glob characters? 4.10
The asterisk “*”
The question mark “?”
The square brackets “[” and “]”
The semicolon “;” can be used to separate multiple commands to be executed in order. 4.12.1
True
To be able to output messages to the screen use the _______ command: 4.6
echo
The _______ command will print a list of the commands that you’ve previously executed. - 4.5
history
The acronym CLI stands for: - 4.3
Command Line Interface
The acronym GNU stands for: 4.4.4
Gnu’s Not Unix
Select all the applications that provide access to the Command Line Interface (CLI)? 4.4
Terminal window
Virtual Terminal
Which environment variable contains a list of directories that is searched for commands to execute? 4.7
Path
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. - 4.12.2
False
The shell program is what interprets the commands you type into the terminal into instructions that the Linux Operating System can execute. 4.4.2
True
What one character treats the character that follows it as if it was surrounded by single quotes? 4.11.3
\