LoginSignup
0
1

More than 5 years have passed since last update.

Cプログラムの中でシェルコマンドを実行して結果を読み込む

Posted at

popen関数の第1引数にコマンドの文字列を与える。
結果は戻り値に格納されファイルとして扱える。

#define BUF 256

    FILE *fp;
    char *cmd = "ls";

    fp = popen(cmd, "r");

    while(fgets(buf, BUF, fp)) {
         fputs(buf, stdout);
    }

    pclose(fp);

Man page of POPEN

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1