Piping, Redirection and Wildcard Commands Flashcards
1
Q
|
A
Pipes the command on the left to the right
2
Q
<
A
Send the input from the file on the right to the program on the left
3
Q
>
A
Takes output from the command on the left and then writes it to the file on the right
4
Q
> >
A
Takes output from the command on the left and appends it to the file on the right
5
Q
*
A
Wildcard matches any output to the command.