I Steven's UNIX Network Programming, he mentions redirecting stdin, stdout and stderr which is needed when setting up a daemon. He does with the following C code
/* redirect stdin, stdout, and stderr to /dev/null */
open("/dev/null", O_RDONLY);
open("/dev/null", O_RDWR);
open("/dev/null", O_RDWR);
I'm confused how these three 'know' they are redirecting the three std*. Especially since the last two commands are the same. Could someone explain or point me in the right direction? Thanks
dup2(). – Ignacio Vazquez-Abrams Nov 24 '10 at 3:24