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



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

您需要popen()。下面是一个例子,取自。。。(见下文)。

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;
}

编辑:我已经删除了原始源代码的链接,因为它看起来像是发生了域更改,并且该网站现在包含一些看起来很讨厌的恶意软件。

是的,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 errorn");return -1;}
    if(dup2(fd,STDOUT_FILENO) != STDOUT_FILENO)
    {printf("dup2 errorn");return -1;}
    system(argv[1]);

    close(fd);  
    return 0;
}

编译并调用/a.out ifconfig

文件.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)