dup2 的用法

包含头文件以及函数原型

#include <unistd.h>

int dup2(int oldfd, int newfd);

用途举例,wget 的 log 是输出标准错误,也即 2 

 

你可能感兴趣的:(dup2 的用法)