上传者: 38522029
|
上传时间: 2022-07-26 04:26:43
|
文件大小: 22KB
|
文件类型: PDF
下面的代码用于在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