I have a question on a homework assignment with the following code:
dup2(fd,0);
dup2(fd,1);
dup2(fd,2);
if(fd>2)
close(fd);
It says, "To see why the if test is needed, assume fd is 1 and draw a picture of what happens to the three descriptor entries and the corresponding file table entry with each call to dup2. Then assume fd is 3 and draw the same picture."
I was wondering if I could get some help on this because I am pretty lost. Can anyone give me a quick tutorial on this material because I'm having a hard time finding it in my book and online. Thanks.