c,c++中调用shell脚本并保存shell的执行结果

时间:2022-03-24 08:52:44

在写作c、c++控制台程序时,我们可以直接调用控制台下的命令,在控制台上输出一些信息。

调用方式为 system(char*);

例如,在控制台程序中,获得本机网络配置情况。

int main(){

system("ipconfig");

return 0;

}

但是,如果我们想保存调用命令的输出结果呢?

这里给大家介绍一种方法:

std::string exec(const char* cmd) {
    FILE* pipe = popen(cmd, "r");
    if (!pipe) return "ERROR";
    char buffer[128];
    std::string result = "";
    while(!feof(pipe)) {
        if(fgets(buffer, 128, pipe) != NULL)
            result += buffer;
    }
    pclose(pipe);
    return result;
}


这个函数中,输入的是命令的名字,返回的是执行的结果。

从一个国外网站上看来的:http://*.com/questions/478898/how-to-execute-a-command-and-get-output-of-command-within-c