有没有办法使用C程序获取.txt文件上的linux命令(如ifconfig)的输出?

时间:2013-08-18 08:11:22

标签: c networking network-programming

我实际上希望在Linux上使用C程序获取.txt文件中的所有网络参数,如IP地址,DNS服务器等。

2 个答案:

答案 0 :(得分:2)

你想要popen()。以下是一个示例,取自here

void get_popen_data() {
    FILE *pf;
    char command[COMMAND_LEN];
    char data[DATA_SIZE];

    // Execute a process listing
    sprintf(command, "ps aux wwwf"); 

    // Setup our pipe for reading and execute our command.
    pf = popen(command,"r"); 

    if(!pf){
      fprintf(stderr, "Could not open pipe for output.\n");
      return;
    }

    // Grab data from process execution
    fgets(data, DATA_SIZE , pf);

    // Print grabbed data to the screen.
    fprintf(stdout, "-%s-\n",data); 

    if (pclose(pf) != 0)
        fprintf(stderr," Error: Failed to close command stream \n");

    return;
}

答案 1 :(得分:0)

是的,popen很好,而我有另一种方式。您只需打开该文件,然后使用dup2将文件转换为STDOUT_FINO,然后拨打system,执行您想要的任何操作。输出只是打印到文件a.txt

代码:

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>

int main(int argc,char *argv[])
{
    int fd;
    if(argc != 2)
    {printf("./a.out <cmdString>\n"); return -1;}

    if((fd = open("a.txt",O_RDWR|O_CREAT|O_TRUNC)) < 0)
    {printf("open a.txt error\n");return -1;}

    if(dup2(fd,STDOUT_FILENO) != STDOUT_FILENO)
    {printf("dup2 error\n");return -1;}

    system(argv[1]);


    close(fd);  
    return 0;
}

编译并调用 ./ a.out ifconfig

档案a.txt:

eth0      Link encap:Ethernet  HWaddr 00:26:22:0A:CD:51  
          inet addr:192.168.1.4  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::226:22ff:fe0a:cd51/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1655 errors:0 dropped:0 overruns:0 frame:2
          TX packets:1344 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:829059 (809.6 Kb)  TX bytes:180519 (176.2 Kb)
          Interrupt:17 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:617 errors:0 dropped:0 overruns:0 frame:0
          TX packets:617 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:49256 (48.1 Kb)  TX bytes:49256 (48.1 Kb)