摘要: ```C++ std::string executeShellCommand(const std::string &command) { FILE* pipe = popen(command.c_str(), "r"); if (!pipe) return "ERROR"; char buffer[ 阅读全文
posted @ 2023-06-16 09:29 卡尔的思索 阅读(153) 评论(0) 推荐(0) 编辑