c++如何执行shell脚本

c++
1104
2024/12/31 3:32:55
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,你可以使用system()函数来执行Shell脚本

#include <iostream>
#include <cstdlib>

int main() {
    // 要执行的Shell脚本文件路径
    std::string scriptPath = "/path/to/your/script.sh";

    // 使用system()函数执行Shell脚本
    int result = system(scriptPath.c_str());

    // 检查命令执行结果
    if (result == 0) {
        std::cout << "Shell脚本执行成功" << std::endl;
    } else {
        std::cerr << "Shell脚本执行失败,返回值: " << result << std::endl;
    }

    return 0;
}

请确保将scriptPath变量设置为你要执行的Shell脚本的实际路径。注意,这个示例适用于Unix-like系统(如Linux和macOS)。如果你正在使用Windows系统,你需要将脚本扩展名更改为.bat.cmd,并相应地修改代码。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c++回调函数有什么用