我正在使用以下代码来提取系统命令的输出。
我没有在PATH变量中为“pic”设置路径。我想要存储
输出命令"which pic"
,并且不希望在控制台上显示它。
这是我的代码:
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
int main ()
{
FILE *fp;
int status;
char path[1035];
char *command = "which pic";
/* Open the command for reading. */
fp = popen(command, "r");
if (fp == NULL) {
printf("Failed to run command\n" );
exit(0);
}
/* Read the output a line at a time - output it. */
while (fgets(path, sizeof(path)-1, fp) != NULL) {
cout<<"<<<<<<<<<<,"<<endl;
printf("%s", path);
}
/* close */
pclose(fp);
return 0;
}
但它在控制台中显示以下输出:
which: no pic in(/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin)
答案 0 :(得分:1)
运行"which pic 2>&1"
作为您的命令。您希望捕获which
的所有输出,包括其错误(发送到stderr)。