I know what does dup or dup2 do ,but I have no idea when it would be used. Any practical examples? Thanks.
|
feedback
|
|
One example use would be I/O redirection. For this you fork a child process and close the stdin or stdout file descriptors (0 and 1) and then you do a dup() on another filedescriptor of your choice which will now be mapped to the lowest available file descriptor, which is in this case 0 or 1. Using this you can now exec any child process which is possibly unaware of your application and whenever the child writes on the stdout (or reads from stdin, whatever you configured) the data gets written on the provided filedescriptor instead. Shells use this to implement commandos with pipes, e.g. | |||
|
feedback
|
|
When you are curious about POSIX functions, especially those that seem to duplicate themselves its generally good to check the standard itself. At the bottom you will usually see examples, as well as reasoning behind the implementation (and existence) of both. In this case:
| |||
feedback
|
|
One practical example is redirecting output messages to some other stream like some log file. Here is a sample code for I/O redirection.
| |||
|
feedback
|