Tagged Questions
1
vote
2answers
71 views
homework dup2 function
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 ...