2.7 Flashcards

1
Q

Preconnected input and output communication channels available to Linux shells and processes.

A

standard stream

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A standard stream that provides data that is typically streamed from the keyboard.

A

stdin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A standard stream that accepts normal output information to be streamed to the console screen or shell window.

A

stdout

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The process of modifying a shell command to divert the standard input, output, and error streams to locations other than the default.

A

redirection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Command line operators used when implementing redirection.

A

> ,»,&>,<

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The process of redirecting the output from one command to be the input of another command.

A

piping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A command line operator that is used when implementing piping.

A

|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A linux command that redirectsoutput to both stdout and to a file.

A

tee

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A block of text that is redirected as input to a command.

A

Here documents

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A command line operator that is used when implementing here documents.

A

«

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A device file that is associated with the computer’s controlling terminal or the shell’s window.

A

/dev/tty

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A device file that is associate with a null device that is commonly used for disposing unwanted output streams.

A

/dev/null

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

A feature of the bash shell that substitutes the output of one shell command as the arguments for another shell command.

A

Command substitution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A command line operator that is used when implementing command substitution.

A

$()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A shell command that can be used to split large text streams into 128 KB chunks and to execute shell commands using these chunks as arguments.

A

xargs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly