有没有一种方法可以使用C程序在.txt文件上获得linux命令(如ifconfig)的输出?

有没有一种方法可以使用C程序在.txt文件上获得linux命令(如ifconfig)的输出?,c,networking,network-programming,C,Networking,Network Programming,实际上,我希望在Linux上使用C程序在.txt文件中获取所有网络参数,如IP地址、DNS服务器等。您需要的。下面是一个例子,摘自: 是的,波本很好,而我有另一种方法。您只需打开文件并使用dup2将文件转换为STDOUT_FINO,然后调用系统,做任何您想做的事情。输出仅打印到filea.txt 代码: 是的,但是太好吃了,不回答。 void get_popen_data() { FILE *pf; char command[COMMAND_LEN]; char data

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

您需要的。下面是一个例子,摘自:

是的,波本很好,而我有另一种方法。您只需打开文件并使用dup2将文件转换为STDOUT_FINO,然后调用系统,做任何您想做的事情。输出仅打印到filea.txt

代码:


是的,但是太好吃了,不回答。
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;
}
#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;
}
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)