Linux
1. Redirection of standard output >
The default standard output is the screen.
>
is output redirection symbol and syntax is:
$ command > output.file.name
https://bash.cyberciti.biz/guide/Standard_output
2. Redirected output >>
Appending the output to the same file using >>
operator.
3. Pipes |
https://bash.cyberciti.biz/guide/Chapter …
more ...