- 论坛徽章:
- 0
|
关于getopt
- 4 #include <unistd.h>;
- 5 #include <string.h>;
- 6 #include <stdio.h>;
- 7 #include <stdlib.h>;
- 8 int main(int argc,char** argv)
- 9 {
- 10 if(argc!=2)
- 11 {
- 12 printf("I need a single option,maybe followed tightly by its parameter. \n");
- 13 exit(1);
- 14 }
- 15
- 16 int t;
- 17 for (t=0; t<argc; t++)
- 18 printf("argv[%d] is %s\n",t,argv[t]);
- 19
- 20 //adjusting....如果某个参数向量的首字符不是‘-’,
- 21 //动态申请,插入‘-’。
- 22 int i;
- 23 char *s[argc];
- 24 s[0] = argv[0];
- 25 for (i=1; i<argc ; i++)
- 26 {
- 27 if( argv[i][0]!='-')
- 28 {
- 29 s[i] = malloc(strlen(argv[i])+1);
- 30 s[i][0] = '-';
- 31 strcpy(&s[i][1],argv[i]);
- 32 }
- 33 else
- 34 {
- 35 s[i] = malloc( strlen(argv[i])+1 );
- 36 strcpy (s[i],argv[i]);
- 37 // strcat(s[i],"\0");
- 38 }
- 39
- 40 }
- 41
- 42
- 43 printf("After adjusting ,argvs are:\n");
- 44 int j;
- 45 for ( j=0; j<argc; j++)
- 46 printf("s[%d] is %s\n",j,s[j]);
- 47
- 48 int ch;
- 49 opterr = 0;//to disable error message
- 50 ch = getopt(argc,s,"a:bcde");//注意第二个参数
- 51 printf("%c\n",ch);
- 52 //这里只判断了一种情况
- 53 if(ch=='a')
- 54 printf("%s\n",optarg);
- 55
- 56 int f;
- 57 for(f = 0;f<argc;f++)
- 58 free (s[f]);
- 59
- 60 return 0;
- 61 }
复制代码
只判断了一种情况,如果规范的写的话,应该写成fwizard那样的swith语句。
感觉笨拙得很,朋友们肯定有好办法,盼由以教我~~ |
|