小编典典

如何使用 POSIX 在 C++ 中执行命令并获取命令的输出?

all

我正在寻找一种从 C++ 程序中运行命令时获取命令输出的方法。我已经研究过使用该system()功能,但这只会执行一个命令。这是我正在寻找的示例:

std::string result = system("./some_command");

我需要运行任意命令并获取其输出。我查看了boost.org,但没有找到任何可以满足我需要的东西。


阅读 112

收藏
2022-03-09

共1个答案

小编典典

#include <cstdio>
#include <iostream>
#include <memory>
#include <stdexcept>
#include <string>
#include <array>

std::string exec(const char* cmd) {
    std::array<char, 128> buffer;
    std::string result;
    std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
    if (!pipe) {
        throw std::runtime_error("popen() failed!");
    }
    while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
        result += buffer.data();
    }
    return result;
}

C++11 之前的版本:

#include <iostream>
#include <stdexcept>
#include <stdio.h>
#include <string>

std::string exec(const char* cmd) {
    char buffer[128];
    std::string result = "";
    FILE* pipe = popen(cmd, "r");
    if (!pipe) throw std::runtime_error("popen() failed!");
    try {
        while (fgets(buffer, sizeof buffer, pipe) != NULL) {
            result += buffer;
        }
    } catch (...) {
        pclose(pipe);
        throw;
    }
    pclose(pipe);
    return result;
}

popenandpclose替换为_popenand_pclose用于 Windows。

2022-03-09