[3529] | 1 | Copyright (C) 1992, 1997-2002, 2004-2021 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 | Isamu Hasegawa wrote the POSIX regular expression matcher, which is
|
---|
| 10 | part of the GNU C Library and is distributed as part of GNU grep for
|
---|
| 11 | use on non-GNU systems. Ulrich Drepper, Paul Eggert, Paolo Bonzini,
|
---|
| 12 | Stanislav Brabec, Assaf Gordon, Jakub Jelinek, Jim Meyering, Arnold
|
---|
| 13 | Robbins, Andreas Schwab and Florian Weimer also contributed to this
|
---|
| 14 | matcher.
|
---|
| 15 |
|
---|
| 16 | Arthur David Olson contributed the heuristics for finding fixed substrings
|
---|
| 17 | at the end of dfa.c.
|
---|
| 18 |
|
---|
| 19 | Henry Spencer wrote the original test suite from which grep's was derived.
|
---|
| 20 | Scott Anderson invented the Khadafy test.
|
---|
| 21 |
|
---|
| 22 | David MacKenzie wrote the automatic configuration software used to
|
---|
| 23 | produce the configure script.
|
---|
| 24 |
|
---|
| 25 | Authors of the replacements for standard library routines are identified
|
---|
| 26 | in the corresponding source files.
|
---|
| 27 |
|
---|
| 28 | The idea of using Boyer-Moore type algorithms to quickly filter out
|
---|
| 29 | non-matching text before calling the regexp matcher was originally due
|
---|
| 30 | to James Woods. He also contributed some code to early versions of
|
---|
| 31 | GNU grep.
|
---|
| 32 |
|
---|
| 33 | Mike Haertel would like to thank Andrew Hume for many fascinating
|
---|
| 34 | discussions of string searching issues over the years. Hume and
|
---|
| 35 | Sunday's excellent paper on fast string searching describes some of
|
---|
| 36 | the history of the subject, as well as providing exhaustive
|
---|
| 37 | performance analysis of various implementation alternatives.
|
---|
| 38 | The inner loop of GNU grep is similar to Hume & Sunday's recommended
|
---|
| 39 | "Tuned Boyer Moore" inner loop. See: Hume A, Sunday D.
|
---|
| 40 | Fast string searching. Software Pract Exper. 1991;21(11):1221-48.
|
---|
| 41 | https://doi.org/10.1002/spe.4380211105
|
---|
| 42 |
|
---|
| 43 | Arnold Robbins contributed to improve dfa.[ch]. In fact
|
---|
| 44 | it came straight from gawk-3.0.3 with small editing and fixes.
|
---|
| 45 |
|
---|
| 46 | Many folks contributed. See THANKS; if I omitted someone please
|
---|
| 47 | send me email.
|
---|
| 48 |
|
---|
| 49 | Alain Magloire maintained GNU grep until version 2.5e.
|
---|
| 50 |
|
---|
| 51 | Bernhard "Bero" RosenkrÀnzer <bero@arklinux.org> maintained GNU grep until
|
---|
| 52 | version 2.5.1, ie. from Sep 2001 till 2003.
|
---|
| 53 |
|
---|
| 54 | Stepan Kasal <kasal@ucw.cz> maintained GNU grep since Feb 2004.
|
---|
| 55 |
|
---|
| 56 | Tony Abou-Assaleh <taa@acm.org> maintains GNU grep since Oct 2007.
|
---|
| 57 |
|
---|
| 58 | Jim Meyering <jim@meyering.net> and Paolo Bonzini <bonzini@gnu.org>
|
---|
| 59 | began maintaining GNU grep in Nov 2009. Paolo bowed out in 2012.
|
---|
| 60 |
|
---|
| 61 | ;; Local Variables:
|
---|
| 62 | ;; coding: utf-8
|
---|
| 63 | ;; End:
|
---|