gpt4 book ai didi

linux - 从 C++ 调用 shell 脚本

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:37:48 26 4
gpt4 key购买 nike

命令 execl("/system/bin/sh","sh","test.sh")

从 C++ 代码调用 shell 脚本 test.sh

执行 shell 脚本后,我需要将控制权交还给 C++,但 shell 脚本只是退出而不是执行 C++ 代码中的下一条指令

最佳答案

您想在exec 之前使用fork 创建一个子进程:

pid_t pid;
if((pid = fork()) == 0)
execl("/system/bin/sh","sh","test.sh");
int status;
waitpid(pid, &status, 0); // wait for child process, test.sh, to finish

关于linux - 从 C++ 调用 shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24386993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com