linux c++ 调用shell命令保存执行结果 示例
下面的代码用于在c++函数里面调用shell,并且执行命令,取回命令执行结果。 #include #include #include #include int main() { const int SIZE = 64; const int MAX_RESPONSE_SIZE = 65535; char charBuff[SIZE]; int bytesRead = 0; int closeResult; std::string result_; std::string cmd_ = ls -al; // 要执行的命令 if
暂无评论