Linux基础知识中popen函数的使用总结

Linux 中的popen机制可以在程序中执行一个shell命令,有两种操作模式,分别为读和写。在读模式中,程序中可以读取到命令的输出,其中有一个应用就是获取网络接口的参数。在写模式中,最常用的是创建一个新的文件或开启其他服务等。

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

#define BUF_SIZE 1024
char buf[BUF_SIZE];

int main(void)
{
    FILE * p_file = NULL;

    p_file = popen("ifconfig eth0", "r");
    if (!p_file) {
        fprintf(stderr, "Erro to popen");
    }

    while (fgets(buf, BUF_SIZE, p_file) != NULL) {
        fprintf(stdout, "%s", buf);
    }
    pclose(p_file);

    p_file = popen("touch test.tmp", "w");
    if (!p_file) {
        fprintf(stderr, "Erro to popen");
    }

    while (fgets(buf, BUF_SIZE, p_file) != NULL) {
        fprintf(stdout, "%s", buf);
    }
    pclose(p_file);

    p_file = popen("touch test.tmp", "w");
    if (!p_file) {
        fprintf(stderr, "Erro to popen");
    }

    pclose(p_file);


    return 0;
}

运行后结果:

eth0      Link encap:Ethernet  HWaddr 00:0c:29:db:ac:05 
          inet6 addr: fe80::20c:29ff:fedb:ac05/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:306065 errors:1 dropped:0 overruns:0 frame:0
          TX packets:291821 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:130350798 (130.3 MB)  TX bytes:119043669 (119.0 MB)
          Interrupt:19 Base address:0x2000


CMD: ls

test.tmp

函数原型:

#include “stdio.h”

FILE *popen( const char* command, const char* mode )

参数说明:

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

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

返回值:

如果调用成功,则返回一个读或者打开文件的指针,如果失败,返回NULL,具体错误要根据errno判断

int pclose (FILE* stream)

参数说明:

stream:popen返回的文件指针

返回值:

如果调用失败,返回 -1

作用:

popen() 函数用于创建一个管道:其内部实现为调用 fork 产生一个子进程,执行一个 shell 以运行命令来开启一个进程这个进程必须由 pclose() 函数关闭。

例子:

管道读:先创建一个文件test,然后再test文件内写入“Read pipe successfully !”

相关推荐