Date: 1/22/2014 |
|
|
standard output "1" (stdo) standard error "2" (stderr) It is possible to redirect the standard output and error into files, for example
To redirect both stdo and stderr to the same file:
If you need to discard the stdo stream, you can re-direct it to /dev/null:
It is also possible to re-direct the standart output of one process into the standard input of the other using pipes "|"
|
|