I have set up pipes to redirect stderr and stdout. When I use printf, does it send data to stdout or to stream 1?
If it sends it to stdout, how can I instead configure it to send data to stream 1?
|
|
I have set up pipes to redirect stderr and stdout. When I use printf, does it send data to stdout or to stream 1? If it sends it to stdout, how can I instead configure it to send data to stream 1?
|
||
|
|
|
|
The
So, no you don't need to do anything special -- it is taken care of automatically. |
|||
|
|
|
|
printf always sends data to stdout. If you have redirected stdout using a pipe, it will go to the process that stdout is being piped to. And stream 1 (assuming you mean the stream associated with file descriptor 1) is stdout, unless you are doing something really weird (in which case, stop) |
||
|
|
|
|
I think your understanding of the layers involved is a little bit misguided. The C runtime's Normally, when you run Nothing outside of your program cares about your buffered I/O or what you do with your own |
||
|
|