我正在尝试做这样的事情:
int main(int argc, char** argv)
{
bool foo = false;
//parse args, check if --foo is an arg, if so mark foo true
if (foo)
{
//child behavior
while (true) { std::cout << "child" << std::endl; sleep(1); }
}
else
{
//do some parent process stuff
pid_t pid = fork();
if(pid == 0) //spawn child
{
char* newArgv[argc+1];
for (int i = 0; i < argc; ++i) newArgv[i] = argv[i];
newArgv[argc] = "--foo"; //make child run child code
std::ostringstream oss;
oss << argv[0] << " >> foo.txt 2>&1"; //same binary but redir child output
execvp(out.str().c_str(), newArgv);
}
//more regular parent code
}
return 0;
}
所以,基本上,二进制生成一个新的参数以不同的方式运行,并且输出被重定向(理想情况下)。不幸的是,虽然这确实产生了两个过程,但我似乎失去了孩子的输出,我不确定为什么?
答案 0 :(得分:0)
更简单的更多有什么问题:
int main(int argc, char** argv) {
//do some parent process stuff
pid_t pid = fork();
if(pid == 0) //this is the child
{
//child behavior
while (true) { std::cout << "child" << std::endl; sleep(1); }
} else {
//more regular parent code
}
return 0;
}
答案 1 :(得分:0)
在调用foo.txt
之前,您必须将filedescriptor 1设置为指向execv
。然后,子进程将使用foo.txt
作为标准输出:
fd_t f = open("foo.txt", O_WRONLY);
if (f != 1)
{
close(1);
dup2(f, 1);
close(f);
}
execv(...);
上面代码中的任何错误修正都留给读者练习。错误修正包括但不限于检查函数调用返回的错误。
编辑:
如果您希望标准错误(fildescriptor 2)转到标准输出的任何地方,您必须在execv
之前添加它:
close(2);
dup2(1, 2);