我试图从 c+++ 程序中在 unix 中调用 wget 。 我想在使用叉子后在孩子体内调用它, 我需要使用 exec 而不是系统 () 。 我所做的是
pid_t pID = fork();
if (pID == 0)
{
execl("/bin/wget","wget", "http://google.gr",(char*)0);
}
and expect to have a html file in the same folder the executable file is, but this does not happen, how should i do it properly?