- 论坛徽章:
- 0
|
8可用积分
代码如下:
问题在于:可选参数并不起作用
我已经改了N久不见成效
困惑!!!
#include <stdio.h>
#include <string.h>
#define MAXLINE 1000 //最大输入行长度
int getline(char *line, int max);
/* find函数:打印与第一个参数指定的模式匹配的行 */
void main(int argc, char *argv[])
{
char line[MAXLINE];
long lineno = 0;
int c, except =0, number = 0, found = 0;
//while(--argc > 0)
//printf("%c\n", (*++argv)[1]);
while(--argc > 0 && (*++argv)[0] == '-')
while(c == (*++argv)[1])
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;
}
//printf("except=%d,number=%d\n", except, number);
if(argc == 1)
printf("Usage: find -x -n pattern\n");
else
while(getline(line, MAXLINE) > 0)
{
lineno++;
if( (strstr(line, *argv) != NULL) != except ) //前面有-x,打印不匹配的行,所以要是不匹配该条件成立
{
if(number)
printf("%d:", lineno);
printf("%s", line);
found++;
}
}
printf("%d\n", found);
}
/* getline函数:将行保存到s中,并返回该行的长度 */
int getline(char s[], int lim)
{
int c, i;
i = 0;
while(--lim > 0 && (c = getchar()) != EOF && c != '\n')
s[i++] = c;
if(c == '\n')
s[i++] = c;
s = '\0';
return i;
} |
|