Command Data Flows & Redirecting Standard Output Flashcards
what is standard input’s default link?
Keyboard
what is standard output’s default link?
Terminal
what are the two input options for a command?
standard input and command arguments
when referencing command inputs and outputs.
how many data flow options are there and what are they?
3 data flows.
standard input
standard output
standard error
what is the processing of piping
linking the output of one command to the input of another’s
what is a different term of piping
concatenation
what number values represent:
standard input
standard output
standard error
standard input = 0
standard output = 1
standard error = 2
command for redirecting or concatenating a data-flow
cat 1> destination.txt
1,2 and 3 are interchangeable depending on which data-flow you intend to redirect