0

我正在编写一个程序,它需要一个命令行然后解析它,以便在输入中打印每个 argv 的字符串数组。

该代码给了我一个分段错误(核心转储)!

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

char  **parse(int position ,char *argv[]  ) ;
int main(int argc ,char *argv[])
 {

    int i=1;
    int f=argc;
    argc--;
    while( i<f) 
   {
     char commands[10];
     char **argument=parse(argc,argv);
     //parse(i ,argv ,commands ,argument) ;
     printf("the argument[ %i ] is :%s \n",i,argument[i]);

     argc-- ;
     i++;
   }
  }

char **parse(int position ,char *argv[])
 {  
   // char *commands;
    char** arguments;
    char *result ;
    char buffer [30] ;
    int count =0;

    arguments = calloc(1, sizeof (char *));

    strcpy(buffer,argv[position-1]); //copy the current argv to the buffer

    result =strtok(buffer," ");
   // strcpy(commands,result); 
    //result =strtok(buffer," ");
    while(result !=NULL )
      {

        arguments[count] =result ;
        ++count;
        arguments = realloc(arguments, sizeof (char *) * (count + 1));            
        result=strtok(NULL," ");
      }
   arguments[count] = NULL; //in order to call the execvp 



   return arguments;

  } 

谢谢你的帮助 。

4

3 回答 3

1

argv[][]您可以使用array访问每个参数。并argc给你一些论点。这包括程序名称本身。例如:

c:\>test.exe arg1 arg2

这里argc将是 3 和

argv[0]="test.exe";
argv[1]="arg1";
argv[2]="arg2";

或者如果你想要更多交互式命令行解析检查这个tclap

于 2013-05-11T12:24:15.443 回答
1

我不知道您要达到什么目标,但是:

int main(int argc ,char **argv)
{
   int i;

   for( i=1; i<argc; ++i )
   {
       printf("the argument[ %i ] is :%s \n",i,argv[i]);
   }
   return 0;
}
于 2013-05-11T12:09:59.587 回答
0

也许像这样

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

char  **parse(int position , char *argv[], char *outputbuff);
int main(int argc ,char *argv[]){
    int i;
    for(i=1;i<argc;++i) {
        char commands[30];
        char **argument;
        argument=parse(i ,argv ,commands);
        {
            int j;
            for(j=0;argument[j]!=NULL;++j)
                printf("the argument[ %i ] is :%s \n", j, argument[j]);
        }
        free(argument);
    }
    return 0;
}

char **parse(int position ,char *argv[], char *commands){  
    char **arguments;
    char *result ;
    int count =0;

    arguments = calloc(1, sizeof (char *));
    strcpy(commands, argv[position]);
    result =strtok(commands," ");
    while(result !=NULL ){
        arguments[count] =result ;
        ++count;
        arguments = realloc(arguments, sizeof(char*)*(count + 1));            
        result=strtok(NULL," ");
    }
    arguments[count] = NULL;

    return arguments;
}
于 2013-05-11T13:54:17.373 回答