我想在 C++ 程序中获取 Linux 命令的输出字符串以及命令输出状态。我正在我的应用程序中执行 Linux 命令。
例如: 命令:
rmdir abcd
命令输出字符串:
rmdir: 删除 `abcd' 失败: 没有这样的文件或目录
命令状态:
1(表示命令失败)
我尝试使用system()
给出输出状态的 Linux 函数和popen()
给出命令输出字符串的函数,但是这两个函数都没有给出 Linux 命令的输出字符串和输出状态。
输出字符串在标准输出或标准错误描述符中(分别为 1 或 2)。
您必须将这些流(查看dup
并dup2
运行)重定向到可以阅读它们的地方(例如 - POSIX pipe
)。
在 C 中我会做这样的事情:
int pd[2];
int retValue;
char buffer[MAXBUF] = {0};
pipe(pd);
dup2(pd[1],1);
retValue = system("your command");
read(pd[0], buffer, MAXBUF);
现在,您在缓冲区中有(部分)输出,在 retValue 中有返回码。
或者,您可以使用exec
(ie ) 中的函数并使用orexecve
获取返回值。wait
waitpid
更新:这将只重定向标准输出。要重定向标准错误,请使用dup2(pd[1],1)
.
最简单的解决方案是使用system
, 并将标准输出和标准错误重定向到临时文件,您可以稍后将其删除。
基于上面 Piotr Zierhoffer 的回答,这里有一个函数可以做到这一点,并且还可以恢复 stdout 和 stderr 的原始状态。
// Execute command <cmd>, put its output (stdout and stderr) in <output>,
// and return its status
int exec_command(string& cmd, string& output) {
// Save original stdout and stderr to enable restoring
int org_stdout = dup(1);
int org_stderr = dup(2);
int pd[2];
pipe(pd);
// Make the read-end of the pipe non blocking, so if the command being
// executed has no output the read() call won't get stuck
int flags = fcntl(pd[0], F_GETFL);
flags |= O_NONBLOCK;
if(fcntl(pd[0], F_SETFL, flags) == -1) {
throw string("fcntl() failed");
}
// Redirect stdout and stderr to the write-end of the pipe
dup2(pd[1], 1);
dup2(pd[1], 2);
int status = system(cmd.c_str());
int buf_size = 1000;
char buf[buf_size];
// Read from read-end of the pipe
long num_bytes = read(pd[0], buf, buf_size);
if(num_bytes > 0) {
output.clear();
output.append(buf, num_bytes);
}
// Restore stdout and stderr and release the org* descriptors
dup2(org_stdout, 1);
dup2(org_stderr, 2);
close(org_stdout);
close(org_stderr);
return status;
}
您可以使用popen
系统调用,它将输出重定向到文件,并且您可以从文件将输出重定向到字符串。像 :
char buffer[MAXBUF] = {0};
FILE *fd = popen("openssl version -v", "r");
if (NULL == fd)
{
printf("Error in popen");
return;
}
fread(buffer, MAXBUF, 1, fd);
printf("%s",buffer);
pclose(fd);
欲了解更多信息,请阅读man
页面popen
。