popen使用的小例子

    最近需要监控Squid服务器的一些运行状态,需要通过Squid的一些命令来获取,linux c中有个很好用的接口,popen。

    popen() 函数通过创建一个管道,调用 fork 产生一个子进程,执行一个 shell 以运行命令来开启一个进程。这个进程必须由 pclose() 函数关闭,而不是 fclose() 函数。pclose() 函数关闭标准 I/O 流,等待命令执行结束,然后返回 shell 的终止状态。如果 shell 不能被执行,则 pclose() 返回的终止状态与 shell 已执行 exit  一样。

      type 参数只能是读或者写中的一种,得到的返回值(标准 I/O 流)也具有和 type 相应的只读或只写类型。如果 type 是 "r" 则文件指针连接到 command 的标准输出;如果 type 是 "w" 则文件指针连接到 command 的标准输入。

      command 参数是一个指向以 NULL 结束的 shell 命令字符串的指针。这行命令将被传到 bin/sh 并使用-c 标志,shell 将执行这个命令。

例子如下:

#include <stdio.h>
#include <stdlib.h>

#define PATH_SIZE 128

int main()
{
        FILE * fp = NULL;

        fp = popen("cat test.txt","r");
        if(fp){
                char pInfo[PATH_SIZE];
                memset(pInfo, 0, sizeof(pInfo));
                if(fgets(pInfo, sizeof(pInfo), fp)){
                        printf("%s",pInfo);
                        pclose(fp);
                }else
                        pclose(fp);
        }
        return 0;
}

你可能感兴趣的:(shell,command,服务器,null,Path,FP)