1

ファイルテキストにいくつかの情報を保存したいので、このプログラムを書きました:

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


int main(int argc,char *argv[])
 {
     FILE *fichier;
     char buffer[20];
     char command[200];
     char command1[100];


     system(" cat /etc/resolv.conf  | grep nameserver | awk -F' ' '{print $2}' | cut -d'.' -f1-3 | awk '{print $1\".1\"}' > ethernet_dns.txt");

     fichier=fopen("ethernet_dns.txt","r");
     memset(&buffer,0,sizeof(buffer));
     fread(buffer,20,1,fichier);
     printf("buffer is: %s",buffer);

     snprintf(command,sizeof(command),"ping -c 1 -W 1  %s > /tmp/ping_result",buffer);
      printf("command is: %s",command);

     system(command);


     return 0;
 }

結果:

buffer is: 127.0.1.1
command is : ping -c 1 -W 1 127.0.1.1

システムコマンドはこれを返します:

    PING 127.0.1.1 (127.0.1.1) 56(84) bytes of data.
64 bytes from 127.0.1.1: icmp_seq=1 ttl=64 time=0.115 ms

--- 127.0.1.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.115/0.115/0.115/0.000 ms

しかし、実行すると: cat /tmp/ping_result.I got an empty file

4

2 に答える 2

0

問題: コードがコマンドの一部として読み取ろうとしています'\n'buffer[]バッファをトリムする必要があります。*** 下

 // Insure file is open
 fichier=fopen("ethernet_dns.txt","r");
 assert(fichier);

 // Use fgets
 //memset(&buffer,0,sizeof(buffer));
 //fread(buffer,20,1,fichier);
 if (fgets(buffer, sizeof buffer, fichier)) {

   // lop off potential \n
   buffer[strcspn(buffer, "\n")] = '\0';  // ***

   printf("buffer is: <%s>\n",buffer);

   int n = snprintf(command, sizeof(command), "ping -c 1 -W 1  %s > /tmp/ping_result", 
     buffer);
   printf("command is: <%s>\n",command);

   // Only issue command if no problems occurred in snprintf()
   if (n > 0 && n < sizeof(command)) system(command);
于 2016-10-11T14:35:42.950 に答える
0

投稿されたコードにはいくつかの問題があります

1) の結果pingを標準出力ではなく標準出力に出力します。/tmp/ping_result

buffer[]2)配列から末尾の改行を削除できませんでした

次のコード

1) インデントをきれいにする

2) コードの問題を修正

3) 呼び出しの失敗の可能性を処理しますfopen()

4) 不要な最終ステートメントを削除します。return 0

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


int main( void )
{
     FILE *fichier;
     char buffer[20];
     char command[200];



     system(" cat /etc/resolv.conf  | grep nameserver | awk -F' ' '{print $2}' | cut -d'.' -f1-3 | awk '{print $1\".1\"}' > ethernet_dns.txt");

     fichier=fopen("ethernet_dns.txt","r");
     if( !fichier )
     {
         perror( "fopen for ethernet_dns.txt failed");
         exit( EXIT_FAILURE );
     }

     // implied else, fopen successful

     memset(buffer,0,sizeof(buffer));
     size_t len = fread(buffer,1, sizeof(buffer),fichier);
     printf( "len is: %lu\n", len );
     buffer[len-1] = '\0'; // eliminates trailing newline
     printf("buffer is: %s\n",buffer);

     snprintf(command,sizeof(command),"ping -c 1 -W 1 ");
     strcat( command, buffer);
     strcat( command, " > /tmp/ping_result");
     printf("command is: %s\n",command);

     system(command);
}

私のコンピューターでの結果の出力は、ファイルにあります。/tmp/ping_result

PING 127.0.1.1 (127.0.1.1) 56(84) bytes of data.
64 bytes from 127.0.1.1: icmp_seq=1 ttl=64 time=0.046 ms

--- 127.0.1.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.046/0.046/0.046/0.000 ms
于 2016-10-12T20:51:29.027 に答える