第5.10节来自Kernighan / Ritchie命令行参数/可选参数

时间:2012-02-26 23:38:06

标签: c optional-parameters kernighan-and-ritchie

第一次发表海报。希望有人可以帮助我。在第5.10节中,Kernighan给出了一个程序示例,该程序重新打印带有字符串的文本行。所以我把它保存为我的文件夹中的“find”,然后进入cmd,然后是文件夹,然后输入“-x whatever”。但由于某些原因,' - '没有注册,它只是将“-x whatever”视为一个长字符串。任何人都有任何线索为什么会发生这种情况?谢谢。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAXLINE 1000

int getline(char *s, int lim)
{
int i = 0;

while(i < lim - 1 && (*s = getchar()) != EOF && *s++ != '\n')
   i++;

if(*s == '\n')
  *s++ = '\n', i++;

*s = '\0';
return i;
}
int main(int argc, char *argv[])
{

 char line[MAXLINE];
 long lineno = 0;
 int c, except = 0, number = 0, found = 0;

 while(--argc > 0 && (*++argv)[0] == '-')
    while(c = *++argv[0])
      switch(c) {
         case 'x':
              except = 1;
              break;
         case 'n':
              number = 1;
              break;
         default:
              printf("find: illegal option %c\n", c);
              argc = 0;
              found = -1;
              break;
      }

 if(argc != 1)
     printf("Usage: find -x -n pattern\n");
 else
     while(getline(line, MAXLINE) > 0) {
         lineno++;
         if((strstr(line, *argv) != NULL) != except) {
               if(number)
                  printf("%ld:", lineno);
               printf("%s", line);
               found++;
         }
     }

 printf("Found: %d", found);
 return found;
}

1 个答案:

答案 0 :(得分:3)

您必须输入

  find -x whatever

而不是

  find "-x whatever"