opnsense-src/gnu/usr.bin/grep
Franco Fichtner eb99233983 src: clean-cut move to release/11.0.0
Taken from: FreeBSD
Commit ref: d508cb8c8f
2016-10-03 12:28:21 +02:00
..
tests src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
AUTHORS src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
ChangeLog src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
closeout.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
closeout.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
config.h src: clean-cut move to release/11.0.0 2016-10-03 12:28:21 +02:00
COPYING src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
dfa.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
dfa.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
error.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
error.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
exclude.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
exclude.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
FREEBSD-upgrade src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
getpagesize.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
grep.1 src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
grep.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
grep.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
grepmat.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
hard-locale.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
hard-locale.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
isdir.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
kwset.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
kwset.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
Makefile src: clean-cut move to release/11.0.0 2016-10-03 12:28:21 +02:00
Makefile.depend src: clean-cut move to release/11.0.0 2016-10-03 12:28:21 +02:00
NEWS src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
obstack.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
obstack.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
quotearg.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
quotearg.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
README src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
savedir.c src: clean-cut move to release/11.0.0 2016-10-03 12:28:21 +02:00
savedir.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
search.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
system.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
THANKS src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
xalloc.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
xmalloc.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
xstrtol.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
xstrtol.h src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
xstrtoumax.c src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00

This is GNU grep, the "fastest grep in the west" (we hope).  All
bugs reported in previous releases have been fixed.  Many exciting new
bugs have probably been introduced in this revision.

GNU grep is provided "as is" with no warranty.  The exact terms
under which you may use and (re)distribute this program are detailed
in the GNU General Public License, in the file COPYING.

GNU grep is based on a fast lazy-state deterministic matcher (about
twice as fast as stock Unix egrep) hybridized with a Boyer-Moore-Gosper
search for a fixed string that eliminates impossible text from being
considered by the full regexp matcher without necessarily having to
look at every character.  The result is typically many times faster
than Unix grep or egrep.  (Regular expressions containing backreferencing
will run more slowly, however.)

See the files AUTHORS and THANKS for a list of authors and other contributors.

See the file INSTALL for compilation and installation instructions.

See the file NEWS for a description of major changes in this release.

See the file TODO for ideas on how you could help us improve grep.

Send bug reports to bug-gnu-utils@gnu.org.  Be sure to
include the word "grep" in your Subject: header field.