1999-10-05 21:54:54 +05:30
|
|
|
/*
|
2000-06-29 03:30:26 +05:30
|
|
|
* Mini grep implementation for busybox using libc regex.
|
1999-10-21 03:38:37 +05:30
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
|
1999-10-19 11:32:44 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-10-05 21:54:54 +05:30
|
|
|
*
|
|
|
|
*/
|
2003-06-20 14:31:58 +05:30
|
|
|
/*
|
2004-05-26 15:16:41 +05:30
|
|
|
* Apr 2004 by Vladimir Oleynik <dzo@simtreas.ru> -
|
|
|
|
* correction "-e pattern1 -e pattern2" logic and more optimizations.
|
2003-06-20 14:31:58 +05:30
|
|
|
*/
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-06-29 03:30:26 +05:30
|
|
|
#include <stdlib.h>
|
2000-07-09 11:26:14 +05:30
|
|
|
#include <getopt.h>
|
2003-06-20 14:31:58 +05:30
|
|
|
#include <string.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <errno.h>
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
2005-09-14 22:29:11 +05:30
|
|
|
#include "xregex.h"
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2001-01-27 13:54:39 +05:30
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
/* options */
|
2004-05-26 17:17:55 +05:30
|
|
|
#define GREP_OPTS "lnqvscFiHhe:f:L"
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_l (1<<0)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char print_files_with_matches;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_n (1<<1)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char print_line_num;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_q (1<<2)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char be_quiet;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_v (1<<3)
|
2003-06-20 14:31:58 +05:30
|
|
|
typedef char invert_search_t;
|
|
|
|
static invert_search_t invert_search;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_s (1<<4)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char suppress_err_msgs;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_c (1<<5)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char print_match_counts;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_F (1<<6)
|
2003-06-20 14:31:58 +05:30
|
|
|
static char fgrep_flag;
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_i (1<<7)
|
|
|
|
#define GREP_OPT_H (1<<8)
|
|
|
|
#define GREP_OPT_h (1<<9)
|
|
|
|
#define GREP_OPT_e (1<<10)
|
|
|
|
#define GREP_OPT_f (1<<11)
|
|
|
|
#define GREP_OPT_L (1<<12)
|
2004-05-26 17:17:55 +05:30
|
|
|
static char print_files_without_matches;
|
2003-06-20 14:31:58 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
|
|
|
#define GREP_OPT_CONTEXT "A:B:C"
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_A (1<<13)
|
|
|
|
#define GREP_OPT_B (1<<14)
|
|
|
|
#define GREP_OPT_C (1<<15)
|
|
|
|
#define GREP_OPT_E (1<<16)
|
2003-06-20 14:31:58 +05:30
|
|
|
#else
|
|
|
|
#define GREP_OPT_CONTEXT ""
|
2004-05-26 17:18:29 +05:30
|
|
|
#define GREP_OPT_E (1<<13)
|
2003-06-20 14:31:58 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
|
|
|
|
# define OPT_EGREP "E"
|
|
|
|
#else
|
|
|
|
# define OPT_EGREP ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int reflags;
|
|
|
|
static int print_filename;
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2003-06-20 14:31:58 +05:30
|
|
|
static int lines_before;
|
|
|
|
static int lines_after;
|
|
|
|
static char **before_buf;
|
|
|
|
static int last_line_printed;
|
2001-10-24 10:30:29 +05:30
|
|
|
#endif /* CONFIG_FEATURE_GREP_CONTEXT */
|
2001-02-09 06:11:10 +05:30
|
|
|
|
|
|
|
/* globals used internally */
|
2003-06-20 14:31:58 +05:30
|
|
|
static llist_t *pattern_head; /* growable list of patterns to match */
|
|
|
|
static char *cur_file; /* the current file we are reading */
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2001-02-09 06:11:10 +05:30
|
|
|
static void print_line(const char *line, int linenum, char decoration)
|
|
|
|
{
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2004-04-14 23:21:38 +05:30
|
|
|
/* possibly print the little '--' separator */
|
2001-05-22 19:59:27 +05:30
|
|
|
if ((lines_before || lines_after) && last_line_printed &&
|
|
|
|
last_line_printed < linenum - 1) {
|
2001-02-09 06:11:10 +05:30
|
|
|
puts("--");
|
|
|
|
}
|
|
|
|
last_line_printed = linenum;
|
|
|
|
#endif
|
2005-04-16 10:26:11 +05:30
|
|
|
if (print_filename > 0)
|
2001-02-09 06:11:10 +05:30
|
|
|
printf("%s%c", cur_file, decoration);
|
|
|
|
if (print_line_num)
|
|
|
|
printf("%i%c", linenum, decoration);
|
|
|
|
puts(line);
|
|
|
|
}
|
1999-11-08 22:30:52 +05:30
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
static int grep_file(FILE *file)
|
2000-06-29 03:30:26 +05:30
|
|
|
{
|
2003-06-20 14:31:58 +05:30
|
|
|
char *line;
|
|
|
|
invert_search_t ret;
|
2000-06-29 03:30:26 +05:30
|
|
|
int linenum = 0;
|
2000-08-06 20:55:53 +05:30
|
|
|
int nmatches = 0;
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2001-02-09 06:11:10 +05:30
|
|
|
int print_n_lines_after = 0;
|
|
|
|
int curpos = 0; /* track where we are in the circular 'before' buffer */
|
|
|
|
int idx = 0; /* used for iteration through the circular buffer */
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif /* CONFIG_FEATURE_GREP_CONTEXT */
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((line = bb_get_chomped_line_from_file(file)) != NULL) {
|
2003-04-27 07:20:57 +05:30
|
|
|
llist_t *pattern_ptr = pattern_head;
|
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
linenum++;
|
2003-06-20 14:31:58 +05:30
|
|
|
ret = 0;
|
2003-04-27 07:20:57 +05:30
|
|
|
while (pattern_ptr) {
|
|
|
|
if (fgrep_flag) {
|
2003-06-20 14:31:58 +05:30
|
|
|
ret = strstr(line, pattern_ptr->data) != NULL;
|
2003-04-27 07:20:57 +05:30
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* test for a postitive-assertion match (regexec returns success (0)
|
|
|
|
* and the user did not specify invert search), or a negative-assertion
|
|
|
|
* match (regexec returns failure (REG_NOMATCH) and the user specified
|
|
|
|
* invert search)
|
|
|
|
*/
|
|
|
|
regex_t regex;
|
|
|
|
xregcomp(®ex, pattern_ptr->data, reflags);
|
2004-05-26 15:16:41 +05:30
|
|
|
ret |= regexec(®ex, line, 0, NULL, 0) == 0;
|
2003-04-27 07:20:57 +05:30
|
|
|
regfree(®ex);
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
pattern_ptr = pattern_ptr->link;
|
|
|
|
} /* while (pattern_ptr) */
|
|
|
|
|
|
|
|
if ((ret ^ invert_search)) {
|
|
|
|
|
|
|
|
if (print_files_with_matches || be_quiet)
|
|
|
|
free(line);
|
2001-05-25 00:06:18 +05:30
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
/* if we found a match but were told to be quiet, stop here */
|
2004-05-26 17:17:55 +05:30
|
|
|
if (be_quiet || print_files_without_matches)
|
2003-06-20 14:31:58 +05:30
|
|
|
return -1;
|
2001-05-25 00:06:18 +05:30
|
|
|
|
|
|
|
/* keep track of matches */
|
|
|
|
nmatches++;
|
|
|
|
|
|
|
|
/* if we're just printing filenames, we stop after the first match */
|
|
|
|
if (print_files_with_matches)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* print the matched line */
|
|
|
|
if (print_match_counts == 0) {
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2001-05-25 00:06:18 +05:30
|
|
|
int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
|
|
|
|
|
|
|
|
/* if we were told to print 'before' lines and there is at least
|
|
|
|
* one line in the circular buffer, print them */
|
|
|
|
if (lines_before && before_buf[prevpos] != NULL) {
|
|
|
|
int first_buf_entry_line_num = linenum - lines_before;
|
|
|
|
|
|
|
|
/* advance to the first entry in the circular buffer, and
|
|
|
|
* figure out the line number is of the first line in the
|
|
|
|
* buffer */
|
|
|
|
idx = curpos;
|
|
|
|
while (before_buf[idx] == NULL) {
|
|
|
|
idx = (idx + 1) % lines_before;
|
|
|
|
first_buf_entry_line_num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now print each line in the buffer, clearing them as we go */
|
|
|
|
while (before_buf[idx] != NULL) {
|
|
|
|
print_line(before_buf[idx], first_buf_entry_line_num, '-');
|
|
|
|
free(before_buf[idx]);
|
|
|
|
before_buf[idx] = NULL;
|
|
|
|
idx = (idx + 1) % lines_before;
|
|
|
|
first_buf_entry_line_num++;
|
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
}
|
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
/* make a note that we need to print 'after' lines */
|
|
|
|
print_n_lines_after = lines_after;
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif /* CONFIG_FEATURE_GREP_CONTEXT */
|
2001-05-25 00:06:18 +05:30
|
|
|
print_line(line, linenum, ':');
|
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
}
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2001-05-25 00:06:18 +05:30
|
|
|
else { /* no match */
|
|
|
|
/* Add the line to the circular 'before' buffer */
|
|
|
|
if(lines_before) {
|
2002-11-28 16:57:31 +05:30
|
|
|
free(before_buf[curpos]);
|
2003-03-19 14:43:01 +05:30
|
|
|
before_buf[curpos] = bb_xstrdup(line);
|
2001-05-25 00:06:18 +05:30
|
|
|
curpos = (curpos + 1) % lines_before;
|
|
|
|
}
|
2001-01-04 20:41:52 +05:30
|
|
|
}
|
2001-02-09 06:11:10 +05:30
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
/* if we need to print some context lines after the last match, do so */
|
|
|
|
if (print_n_lines_after && (last_line_printed != linenum)) {
|
|
|
|
print_line(line, linenum, '-');
|
|
|
|
print_n_lines_after--;
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif /* CONFIG_FEATURE_GREP_CONTEXT */
|
2000-06-29 03:30:26 +05:30
|
|
|
free(line);
|
1999-11-08 22:30:52 +05:30
|
|
|
}
|
2000-07-19 00:07:01 +05:30
|
|
|
|
2001-05-15 01:10:32 +05:30
|
|
|
|
|
|
|
/* special-case file post-processing for options where we don't print line
|
2001-05-22 02:43:00 +05:30
|
|
|
* matches, just filenames and possibly match counts */
|
2001-05-15 01:10:32 +05:30
|
|
|
|
2001-05-22 02:43:00 +05:30
|
|
|
/* grep -c: print [filename:]count, even if count is zero */
|
2001-05-15 01:10:32 +05:30
|
|
|
if (print_match_counts) {
|
2005-04-16 10:26:11 +05:30
|
|
|
if (print_filename > 0)
|
2001-05-22 02:43:00 +05:30
|
|
|
printf("%s:", cur_file);
|
2001-08-01 04:48:49 +05:30
|
|
|
printf("%d\n", nmatches);
|
2001-05-15 01:10:32 +05:30
|
|
|
}
|
2001-05-22 02:43:00 +05:30
|
|
|
|
|
|
|
/* grep -l: print just the filename, but only if we grepped the line in the file */
|
|
|
|
if (print_files_with_matches && nmatches > 0) {
|
2001-05-16 19:51:09 +05:30
|
|
|
puts(cur_file);
|
2001-05-15 01:10:32 +05:30
|
|
|
}
|
|
|
|
|
2004-05-26 17:17:55 +05:30
|
|
|
/* grep -L: print just the filename, but only if we didn't grep the line in the file */
|
|
|
|
if (print_files_without_matches && nmatches == 0) {
|
|
|
|
puts(cur_file);
|
|
|
|
}
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
return nmatches;
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
static void load_regexes_from_file(llist_t *fopt)
|
2001-05-25 00:06:18 +05:30
|
|
|
{
|
|
|
|
char *line;
|
2003-06-20 14:31:58 +05:30
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
while(fopt) {
|
|
|
|
llist_t *cur = fopt;
|
|
|
|
char *ffile = cur->data;
|
|
|
|
|
|
|
|
fopt = cur->link;
|
|
|
|
free(cur);
|
|
|
|
f = bb_xfopen(ffile, "r");
|
2004-10-08 13:40:57 +05:30
|
|
|
while ((line = bb_get_chomped_line_from_file(f)) != NULL) {
|
|
|
|
pattern_head = llist_add_to(pattern_head, line);
|
|
|
|
}
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
extern int grep_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2003-06-20 14:31:58 +05:30
|
|
|
FILE *file;
|
|
|
|
int matched;
|
|
|
|
unsigned long opt;
|
2004-10-08 13:40:57 +05:30
|
|
|
llist_t *fopt = NULL;
|
2001-10-29 21:19:03 +05:30
|
|
|
|
2000-06-29 03:30:26 +05:30
|
|
|
/* do normal option parsing */
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_CONTEXT
|
2003-06-20 14:31:58 +05:30
|
|
|
{
|
|
|
|
char *junk;
|
|
|
|
char *slines_after;
|
|
|
|
char *slines_before;
|
|
|
|
char *Copt;
|
|
|
|
|
2005-09-05 20:16:07 +05:30
|
|
|
bb_opt_complementally = "H-h:e*:f*:C-AB";
|
2003-06-20 14:31:58 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv,
|
|
|
|
GREP_OPTS GREP_OPT_CONTEXT OPT_EGREP,
|
|
|
|
&pattern_head, &fopt,
|
|
|
|
&slines_after, &slines_before, &Copt);
|
|
|
|
|
|
|
|
if(opt & GREP_OPT_C) {
|
|
|
|
/* C option unseted A and B options, but next -A or -B
|
|
|
|
may be ovewrite own option */
|
|
|
|
if(!(opt & GREP_OPT_A)) /* not overwtited */
|
|
|
|
slines_after = Copt;
|
|
|
|
if(!(opt & GREP_OPT_B)) /* not overwtited */
|
|
|
|
slines_before = Copt;
|
|
|
|
opt |= GREP_OPT_A|GREP_OPT_B; /* set for parse now */
|
|
|
|
}
|
|
|
|
if(opt & GREP_OPT_A) {
|
|
|
|
lines_after = strtoul(slines_after, &junk, 10);
|
2001-02-09 06:11:10 +05:30
|
|
|
if(*junk != '\0')
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("invalid context length argument");
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
|
|
|
if(opt & GREP_OPT_B) {
|
|
|
|
lines_before = strtoul(slines_before, &junk, 10);
|
2001-02-09 06:11:10 +05:30
|
|
|
if(*junk != '\0')
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("invalid context length argument");
|
2000-06-13 11:54:53 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
/* sanity checks after parse may be invalid numbers ;-) */
|
2004-05-26 17:17:55 +05:30
|
|
|
if ((opt & (GREP_OPT_c|GREP_OPT_q|GREP_OPT_l|GREP_OPT_L))) {
|
2003-06-20 14:31:58 +05:30
|
|
|
opt &= ~GREP_OPT_n;
|
|
|
|
lines_before = 0;
|
|
|
|
lines_after = 0;
|
|
|
|
} else if(lines_before > 0)
|
|
|
|
before_buf = (char **)xcalloc(lines_before, sizeof(char *));
|
2000-06-13 11:54:53 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
#else
|
|
|
|
/* with auto sanity checks */
|
2005-09-05 20:16:07 +05:30
|
|
|
bb_opt_complementally = "H-h:e*:f*:c-n:q-n:l-n";
|
2003-06-20 14:31:58 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv, GREP_OPTS OPT_EGREP,
|
|
|
|
&pattern_head, &fopt);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
print_files_with_matches = opt & GREP_OPT_l;
|
2004-05-26 17:17:55 +05:30
|
|
|
print_files_without_matches = (opt & GREP_OPT_L) != 0;
|
2003-06-20 14:31:58 +05:30
|
|
|
print_line_num = opt & GREP_OPT_n;
|
|
|
|
be_quiet = opt & GREP_OPT_q;
|
|
|
|
invert_search = (opt & GREP_OPT_v) != 0; /* 0 | 1 */
|
|
|
|
suppress_err_msgs = opt & GREP_OPT_s;
|
|
|
|
print_match_counts = opt & GREP_OPT_c;
|
|
|
|
fgrep_flag = opt & GREP_OPT_F;
|
|
|
|
if(opt & GREP_OPT_H)
|
|
|
|
print_filename++;
|
|
|
|
if(opt & GREP_OPT_h)
|
|
|
|
print_filename--;
|
|
|
|
if(opt & GREP_OPT_f)
|
|
|
|
load_regexes_from_file(fopt);
|
|
|
|
|
2005-08-01 04:11:05 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_FGREP_ALIAS
|
|
|
|
if(bb_applet_name[0] == 'f')
|
|
|
|
fgrep_flag = 1;
|
|
|
|
#endif
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
|
|
|
|
if(bb_applet_name[0] == 'e' || (opt & GREP_OPT_E))
|
|
|
|
reflags = REG_EXTENDED | REG_NOSUB;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
reflags = REG_NOSUB;
|
|
|
|
|
|
|
|
if(opt & GREP_OPT_i)
|
|
|
|
reflags |= REG_ICASE;
|
|
|
|
|
|
|
|
argv += optind;
|
|
|
|
argc -= optind;
|
2000-06-13 11:54:53 +05:30
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
/* if we didn't get a pattern from a -e and no command file was specified,
|
|
|
|
* argv[optind] should be the pattern. no pattern, no worky */
|
2003-04-27 07:20:57 +05:30
|
|
|
if (pattern_head == NULL) {
|
2003-06-20 14:31:58 +05:30
|
|
|
if (*argv == NULL)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2001-05-25 00:06:18 +05:30
|
|
|
else {
|
2003-06-20 14:31:58 +05:30
|
|
|
pattern_head = llist_add_to(pattern_head, *argv++);
|
|
|
|
argc--;
|
2001-05-25 00:06:18 +05:30
|
|
|
}
|
|
|
|
}
|
2000-06-29 03:30:26 +05:30
|
|
|
|
2001-05-25 00:06:18 +05:30
|
|
|
/* argv[(optind)..(argc-1)] should be names of file to grep through. If
|
2000-06-29 03:30:26 +05:30
|
|
|
* there is more than one file to grep, we will print the filenames */
|
2003-06-20 14:31:58 +05:30
|
|
|
if (argc > 1) {
|
2000-06-29 03:30:26 +05:30
|
|
|
print_filename++;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-06-29 04:29:30 +05:30
|
|
|
/* If no files were specified, or '-' was specified, take input from
|
|
|
|
* stdin. Otherwise, we grep through all the files specified. */
|
2003-06-20 14:31:58 +05:30
|
|
|
} else if (argc == 0) {
|
|
|
|
argc++;
|
2000-07-19 02:32:06 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
matched = 0;
|
|
|
|
while (argc--) {
|
|
|
|
cur_file = *argv++;
|
|
|
|
if(!cur_file || (*cur_file == '-' && !cur_file[1])) {
|
|
|
|
cur_file = "-";
|
|
|
|
file = stdin;
|
|
|
|
} else {
|
2000-06-29 03:30:26 +05:30
|
|
|
file = fopen(cur_file, "r");
|
2003-06-20 14:31:58 +05:30
|
|
|
}
|
2000-06-29 03:30:26 +05:30
|
|
|
if (file == NULL) {
|
|
|
|
if (!suppress_err_msgs)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg("%s", cur_file);
|
2003-06-20 14:31:58 +05:30
|
|
|
} else {
|
|
|
|
matched += grep_file(file);
|
|
|
|
if(matched < 0) {
|
|
|
|
/* we found a match but were told to be quiet, stop here and
|
|
|
|
* return success */
|
|
|
|
break;
|
2000-07-19 02:32:06 +05:30
|
|
|
}
|
2000-06-29 03:30:26 +05:30
|
|
|
fclose(file);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
|
|
|
/* destroy all the elments in the pattern list */
|
|
|
|
while (pattern_head) {
|
|
|
|
llist_t *pattern_head_ptr = pattern_head;
|
|
|
|
|
|
|
|
pattern_head = pattern_head->link;
|
|
|
|
free(pattern_head_ptr);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
#endif
|
1999-10-07 14:00:23 +05:30
|
|
|
|
2001-02-02 02:32:41 +05:30
|
|
|
return !matched; /* invert return value 0 = success, 1 = failed */
|
2000-06-29 03:30:26 +05:30
|
|
|
}
|