1

システムコマンドの出力を抽出するために次のコードを使用しています。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)
4

1 に答える 1

1

コマンドとして実行"which pic 2>&1"します。whichエラー (stderr に送信される) を含め、からのすべての出力をキャプチャする必要があります。

于 2013-01-03T10:30:51.543 に答える