summaryrefslogtreecommitdiff
path: root/src/fgrep.c
blob: f91e62669a102f1e006f2d6eb191a4e65c221a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <config.h>
#include "search.h"

struct matcher const matchers[] = {
  { "fgrep", Fcompile, Fexecute },
  { NULL, NULL, NULL },
};

const char before_options[] =
N_("PATTERN is a set of newline-separated fixed strings.\n");
const char after_options[] =
N_("Invocation as `fgrep' is deprecated; use `grep -F' instead.\n");