+0.44
+ * added the -v option (inverted search) to grep,
+ updated docs/busybox.pod accordingly. -beppu
+
0.43
* Major update to the provided documentation.
* Busybox now includes a shell! It currently costs 7.5 k (plus an
-i ignore case distinctions
-n print line number with output lines
-q be quiet. Returns 0 if result was found, 1 otherwise
+ -v select non-matching lines
This version of grep matches full regular expresions.
=cut
-# $Id: busybox.pod,v 1.21 2000/04/21 21:53:58 erik Exp $
+# $Id: busybox.pod,v 1.22 2000/04/24 18:07:30 beppu Exp $
"\t-h\tsuppress the prefixing filename on output\n"
"\t-i\tignore case distinctions\n"
"\t-n\tprint line number with output lines\n"
- "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n\n"
+ "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
+ "\t-v\tselect non-matching lines\n\n"
#if defined BB_REGEXP
"This version of grep matches full regular expresions.\n";
#else
static int match = FALSE, beQuiet = FALSE;
static void do_grep(FILE * fp, char *needle, char *fileName, int tellName,
- int ignoreCase, int tellLine)
+ int ignoreCase, int tellLine, int invertSearch)
{
char *cp;
long line = 0;
char haystack[BUF_SIZE];
+ int truth = !invertSearch;
while (fgets(haystack, sizeof(haystack), fp)) {
line++;
if (*cp != '\n')
fprintf(stderr, "%s: Line too long\n", fileName);
- if (find_match(haystack, needle, ignoreCase) == TRUE) {
+ if (find_match(haystack, needle, ignoreCase) == truth) {
if (tellName == TRUE)
printf("%s:", fileName);
char *cp;
char *needle;
char *fileName;
- int tellName = TRUE;
- int ignoreCase = TRUE;
- int tellLine = FALSE;
-
-
- ignoreCase = FALSE;
- tellLine = FALSE;
+ int tellName = TRUE;
+ int ignoreCase = FALSE;
+ int tellLine = FALSE;
+ int invertSearch = FALSE;
argc--;
argv++;
beQuiet = TRUE;
break;
+ case 'v':
+ invertSearch = TRUE;
+ break;
+
default:
usage(grep_usage);
}
argc--;
if (argc == 0) {
- do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine);
+ do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine, invertSearch);
} else {
/* Never print the filename for just one file */
if (argc == 1)
continue;
}
- do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine);
+ do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine, invertSearch);
if (ferror(fp))
perror(fileName);
"\t-h\tsuppress the prefixing filename on output\n"
"\t-i\tignore case distinctions\n"
"\t-n\tprint line number with output lines\n"
- "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n\n"
+ "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
+ "\t-v\tselect non-matching lines\n\n"
#if defined BB_REGEXP
"This version of grep matches full regular expresions.\n";
#else
static int match = FALSE, beQuiet = FALSE;
static void do_grep(FILE * fp, char *needle, char *fileName, int tellName,
- int ignoreCase, int tellLine)
+ int ignoreCase, int tellLine, int invertSearch)
{
char *cp;
long line = 0;
char haystack[BUF_SIZE];
+ int truth = !invertSearch;
while (fgets(haystack, sizeof(haystack), fp)) {
line++;
if (*cp != '\n')
fprintf(stderr, "%s: Line too long\n", fileName);
- if (find_match(haystack, needle, ignoreCase) == TRUE) {
+ if (find_match(haystack, needle, ignoreCase) == truth) {
if (tellName == TRUE)
printf("%s:", fileName);
char *cp;
char *needle;
char *fileName;
- int tellName = TRUE;
- int ignoreCase = TRUE;
- int tellLine = FALSE;
-
-
- ignoreCase = FALSE;
- tellLine = FALSE;
+ int tellName = TRUE;
+ int ignoreCase = FALSE;
+ int tellLine = FALSE;
+ int invertSearch = FALSE;
argc--;
argv++;
beQuiet = TRUE;
break;
+ case 'v':
+ invertSearch = TRUE;
+ break;
+
default:
usage(grep_usage);
}
argc--;
if (argc == 0) {
- do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine);
+ do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine, invertSearch);
} else {
/* Never print the filename for just one file */
if (argc == 1)
continue;
}
- do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine);
+ do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine, invertSearch);
if (ferror(fp))
perror(fileName);