1

第一次海报。希望有人可以帮助我解决这个问题。在 5.10 节中,Kernighan 给出了一个程序示例,该程序重新打印带有字符串的文本行。所以我在我的文件夹中将它保存为“find”,然后进入 cmd,然后进入文件夹,然后键入 find“-x 不管”。然而由于某种原因,'-' 没有注册,它只是将“-x 不管”视为一个长字符串。有人知道为什么会这样吗?谢谢。

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

1 回答 1

3

你必须输入

  find -x whatever

代替

  find "-x whatever"
于 2012-02-26T23:45:33.463 回答