家庭作业

8.20

不需要你在环境变量里抓取name,只要用execve。

int main(int argc, char* args[])
{
    execve("/bin/ls", args, environ);

    return 0;
}

相关文章:

  • 2021-09-04
  • 2021-12-09
  • 2021-10-31
猜你喜欢
相关资源
相似解决方案