首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何从C++程序运行bash脚本

要从C++程序运行bash脚本,您可以使用以下方法:

  1. 使用system()函数:
代码语言:c++
复制
#include<iostream>
#include <cstdlib>

int main() {
    std::cout << "Executing bash script..."<< std::endl;
    int result = system("/path/to/your/script.sh");
    if (result == 0) {
        std::cout << "Script executed successfully."<< std::endl;
    } else {
        std::cout << "Script execution failed."<< std::endl;
    }
    return 0;
}
  1. 使用popen()pclose()函数:
代码语言:c++
复制
#include<iostream>
#include <cstdio>
#include <cstdlib>

int main() {
    std::cout << "Executing bash script..."<< std::endl;
    FILE* pipe = popen("/path/to/your/script.sh", "r");
    if (!pipe) {
        std::cout << "Script execution failed."<< std::endl;
        return 1;
    }
    char buffer[128];
    while (fgets(buffer, sizeof(buffer), pipe) != NULL) {
        std::cout<< buffer;
    }
    int result = pclose(pipe);
    if (result == 0) {
        std::cout << "Script executed successfully."<< std::endl;
    } else {
        std::cout << "Script execution failed."<< std::endl;
    }
    return 0;
}

请注意,这些方法都需要在C++程序中包含相应的头文件,并且需要确保您的系统上已经安装了bash。此外,您需要确保您的bash脚本具有执行权限。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券