1 | Copyright (C) 1992, 1997-2002, 2004-2012 Free Software Foundation, Inc.
|
---|
2 |
|
---|
3 | Copying and distribution of this file, with or without modification,
|
---|
4 | are permitted in any medium without royalty provided the copyright
|
---|
5 | notice and this notice are preserved.
|
---|
6 |
|
---|
7 | Mike Haertel wrote the main program and the dfa and kwset matchers.
|
---|
8 |
|
---|
9 | Arthur David Olson contributed the heuristics for finding fixed substrings
|
---|
10 | at the end of dfa.c.
|
---|
11 |
|
---|
12 | Richard Stallman and Karl Berry wrote the regex backtracking matcher.
|
---|
13 |
|
---|
14 | Henry Spencer wrote the original test suite from which grep's was derived.
|
---|
15 |
|
---|
16 | Scott Anderson invented the Khadafy test.
|
---|
17 |
|
---|
18 | David MacKenzie wrote the automatic configuration software use to
|
---|
19 | produce the configure script.
|
---|
20 |
|
---|
21 | Authors of the replacements for standard library routines are identified
|
---|
22 | in the corresponding source files.
|
---|
23 |
|
---|
24 | The idea of using Boyer-Moore type algorithms to quickly filter out
|
---|
25 | non-matching text before calling the regexp matcher was originally due
|
---|
26 | to James Woods. He also contributed some code to early versions of
|
---|
27 | GNU grep.
|
---|
28 |
|
---|
29 | Mike Haertel would like to thank Andrew Hume for many fascinating discussions
|
---|
30 | of string searching issues over the years. Hume & Sunday's excellent
|
---|
31 | paper on fast string searching (AT&T Bell Laboratories CSTR #156)
|
---|
32 | describes some of the history of the subject, as well as providing
|
---|
33 | exhaustive performance analysis of various implementation alternatives.
|
---|
34 | The inner loop of GNU grep is similar to Hume & Sunday's recommended
|
---|
35 | "Tuned Boyer Moore" inner loop.
|
---|
36 |
|
---|
37 | More work was done on regex.[ch] by Ulrich Drepper and Arnold
|
---|
38 | Robbins. Regex is now part of GNU C library, see this package
|
---|
39 | for complete details and credits.
|
---|
40 |
|
---|
41 | Arnold Robbins contributed to improve dfa.[ch]. In fact
|
---|
42 | it came straight from gawk-3.0.3 with small editing and fixes.
|
---|
43 |
|
---|
44 | Many folks contributed. See THANKS; if I omitted someone please
|
---|
45 | send me email.
|
---|
46 |
|
---|
47 | Alain Magloire maintained GNU grep until version 2.5e.
|
---|
48 |
|
---|
49 | Bernhard "Bero" RosenkrÀnzer <bero@arklinux.org> maintained GNU grep until
|
---|
50 | version 2.5.1, ie. from Sep 2001 till 2003.
|
---|
51 |
|
---|
52 | Stepan Kasal <kasal@ucw.cz> maintained GNU grep since Feb 2004.
|
---|
53 |
|
---|
54 | Tony Abou-Assaleh <taa@acm.org> maintains GNU grep since Oct 2007.
|
---|
55 |
|
---|
56 | Jim Meyering <jim@meyering.net> and Paolo Bonzini <bonzini@gnu.org> maintain GNU grep since Nov 2009.
|
---|
57 |
|
---|
58 | ;; Local Variables:
|
---|
59 | ;; coding: utf-8
|
---|
60 | ;; End:
|
---|