下面的代码用于在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
2022-07-26 04:26:43
22KB
c
c+
c++
1