I noticed that we have mainly 3 file streams. They are STDIN, STDOUT and STDERR.. My question is why is STDERR redirected to STDOUT?
|
You can redirect them to different files:
In order to actually redirect
|
||||
|
|
|
It is not; it just happens that both stdout and stderr are typically mapped to the same output stream (usually the console). If you redirect stdout to a file for example you will find that stderr remains directed to the console. The important point is that they are independently redirectable. |
|||
|
|
|
Like |
|||||||||||
|
