├── .gitignore ├── 437.lst ├── 850.lst ├── 8859.lst ├── CHANGES ├── COPYRIGHT ├── Makefile ├── README.md ├── agrep.8859.lst ├── agrep.algorithms ├── agrep.c ├── agrep.chronicle ├── agrep.h ├── agrephlp.c ├── archive ├── 204 │ └── agrep-2.04.tgz ├── 333 │ ├── agrep333.zip │ └── agrepw32.zip ├── 335 │ ├── 333to335.dif │ ├── AgrepWin.dif │ ├── ag335src.zip │ ├── agrep.zip │ ├── agrep2.zip │ ├── agrep335.zip │ └── agrepdos.zip ├── 336 │ └── AGRPW336.ZIP ├── 337 │ ├── ag337src.zip │ ├── agrep337.zip │ └── agrepw32.zip ├── 340 │ └── agrep340.zip ├── 341 │ └── agrep-3.41.tgz ├── README.204 ├── agrep335.doc ├── agrepw32.doc ├── codepage.rexx └── readme.1st ├── asearch.c ├── asearch1.c ├── asplit.c ├── autoconf.h ├── bitap.c ├── bitap.c.orig ├── checkfil.c ├── checkfil.h ├── checkfile.c ├── checkfile.h ├── checksg.c ├── codepage.c ├── codepage.h ├── compat.c ├── config.h ├── contribution.list ├── defs.h ├── delim.c ├── docs ├── AGREP_A_FAST_ APPROXIMATE_PATTERN-MATCHING_TOOL_1992_agrep2.pdf ├── FAST_TEXT_ SEARCHING_WITH ERRORS_199106_ agrep1.pdf ├── GLIMPSE_A_Tool_to_Search_Through_Entire_File_Systems_199310_glimpse.pdf ├── README └── agrep-and-glimpse-docs.zip ├── dummyfil.c ├── dummyfilters.c ├── dummysyscalls.c ├── follow.c ├── installation ├── Agrep.mak ├── Makefile.NeXT ├── Makefile.alpha ├── Makefile.hp ├── Makefile.in ├── Makefile.linux.old ├── Makefile.os2 ├── Makefile.rs6000 ├── Makefile.sgi ├── Makefile.solaris ├── Makefile.sunos ├── README └── agrepgdb.mk ├── io.c ├── io.c.orig ├── main.c ├── maskgen.c ├── newmgrep.c ├── ntdirent.c ├── ntdirent.h ├── parse.c ├── preproce.c ├── preprocess.c ├── putils.c ├── re.h ├── recursiv.c ├── recursive.c ├── resources └── agrep.gif ├── sgrep.c ├── unistd.h ├── utilitie.c ├── utilities.c └── version.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | /agrep 3 | *.exe 4 | *~ 5 | -------------------------------------------------------------------------------- /437.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/437.lst -------------------------------------------------------------------------------- /850.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/850.lst -------------------------------------------------------------------------------- /8859.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/8859.lst -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/README.md -------------------------------------------------------------------------------- /agrep.8859.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrep.8859.lst -------------------------------------------------------------------------------- /agrep.algorithms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrep.algorithms -------------------------------------------------------------------------------- /agrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrep.c -------------------------------------------------------------------------------- /agrep.chronicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrep.chronicle -------------------------------------------------------------------------------- /agrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrep.h -------------------------------------------------------------------------------- /agrephlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/agrephlp.c -------------------------------------------------------------------------------- /archive/204/agrep-2.04.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/204/agrep-2.04.tgz -------------------------------------------------------------------------------- /archive/333/agrep333.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/333/agrep333.zip -------------------------------------------------------------------------------- /archive/333/agrepw32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/333/agrepw32.zip -------------------------------------------------------------------------------- /archive/335/333to335.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/333to335.dif -------------------------------------------------------------------------------- /archive/335/AgrepWin.dif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/AgrepWin.dif -------------------------------------------------------------------------------- /archive/335/ag335src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/ag335src.zip -------------------------------------------------------------------------------- /archive/335/agrep.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/agrep.zip -------------------------------------------------------------------------------- /archive/335/agrep2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/agrep2.zip -------------------------------------------------------------------------------- /archive/335/agrep335.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/agrep335.zip -------------------------------------------------------------------------------- /archive/335/agrepdos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/335/agrepdos.zip -------------------------------------------------------------------------------- /archive/336/AGRPW336.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/336/AGRPW336.ZIP -------------------------------------------------------------------------------- /archive/337/ag337src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/337/ag337src.zip -------------------------------------------------------------------------------- /archive/337/agrep337.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/337/agrep337.zip -------------------------------------------------------------------------------- /archive/337/agrepw32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/337/agrepw32.zip -------------------------------------------------------------------------------- /archive/340/agrep340.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/340/agrep340.zip -------------------------------------------------------------------------------- /archive/341/agrep-3.41.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/341/agrep-3.41.tgz -------------------------------------------------------------------------------- /archive/README.204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/README.204 -------------------------------------------------------------------------------- /archive/agrep335.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/agrep335.doc -------------------------------------------------------------------------------- /archive/agrepw32.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/agrepw32.doc -------------------------------------------------------------------------------- /archive/codepage.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/codepage.rexx -------------------------------------------------------------------------------- /archive/readme.1st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/archive/readme.1st -------------------------------------------------------------------------------- /asearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/asearch.c -------------------------------------------------------------------------------- /asearch1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/asearch1.c -------------------------------------------------------------------------------- /asplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/asplit.c -------------------------------------------------------------------------------- /autoconf.h: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /bitap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/bitap.c -------------------------------------------------------------------------------- /bitap.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/bitap.c.orig -------------------------------------------------------------------------------- /checkfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/checkfil.c -------------------------------------------------------------------------------- /checkfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/checkfil.h -------------------------------------------------------------------------------- /checkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/checkfile.c -------------------------------------------------------------------------------- /checkfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/checkfile.h -------------------------------------------------------------------------------- /checksg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/checksg.c -------------------------------------------------------------------------------- /codepage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/codepage.c -------------------------------------------------------------------------------- /codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/codepage.h -------------------------------------------------------------------------------- /compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/compat.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/config.h -------------------------------------------------------------------------------- /contribution.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/contribution.list -------------------------------------------------------------------------------- /defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/defs.h -------------------------------------------------------------------------------- /delim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/delim.c -------------------------------------------------------------------------------- /docs/AGREP_A_FAST_ APPROXIMATE_PATTERN-MATCHING_TOOL_1992_agrep2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/docs/AGREP_A_FAST_ APPROXIMATE_PATTERN-MATCHING_TOOL_1992_agrep2.pdf -------------------------------------------------------------------------------- /docs/FAST_TEXT_ SEARCHING_WITH ERRORS_199106_ agrep1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/docs/FAST_TEXT_ SEARCHING_WITH ERRORS_199106_ agrep1.pdf -------------------------------------------------------------------------------- /docs/GLIMPSE_A_Tool_to_Search_Through_Entire_File_Systems_199310_glimpse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/docs/GLIMPSE_A_Tool_to_Search_Through_Entire_File_Systems_199310_glimpse.pdf -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/docs/README -------------------------------------------------------------------------------- /docs/agrep-and-glimpse-docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/docs/agrep-and-glimpse-docs.zip -------------------------------------------------------------------------------- /dummyfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/dummyfil.c -------------------------------------------------------------------------------- /dummyfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/dummyfilters.c -------------------------------------------------------------------------------- /dummysyscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/dummysyscalls.c -------------------------------------------------------------------------------- /follow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/follow.c -------------------------------------------------------------------------------- /installation/Agrep.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Agrep.mak -------------------------------------------------------------------------------- /installation/Makefile.NeXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.NeXT -------------------------------------------------------------------------------- /installation/Makefile.alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.alpha -------------------------------------------------------------------------------- /installation/Makefile.hp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.hp -------------------------------------------------------------------------------- /installation/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.in -------------------------------------------------------------------------------- /installation/Makefile.linux.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.linux.old -------------------------------------------------------------------------------- /installation/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.os2 -------------------------------------------------------------------------------- /installation/Makefile.rs6000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.rs6000 -------------------------------------------------------------------------------- /installation/Makefile.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.sgi -------------------------------------------------------------------------------- /installation/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.solaris -------------------------------------------------------------------------------- /installation/Makefile.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/Makefile.sunos -------------------------------------------------------------------------------- /installation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/README -------------------------------------------------------------------------------- /installation/agrepgdb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/installation/agrepgdb.mk -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/io.c -------------------------------------------------------------------------------- /io.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/io.c.orig -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/main.c -------------------------------------------------------------------------------- /maskgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/maskgen.c -------------------------------------------------------------------------------- /newmgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/newmgrep.c -------------------------------------------------------------------------------- /ntdirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/ntdirent.c -------------------------------------------------------------------------------- /ntdirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/ntdirent.h -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/parse.c -------------------------------------------------------------------------------- /preproce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/preproce.c -------------------------------------------------------------------------------- /preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/preprocess.c -------------------------------------------------------------------------------- /putils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/putils.c -------------------------------------------------------------------------------- /re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/re.h -------------------------------------------------------------------------------- /recursiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/recursiv.c -------------------------------------------------------------------------------- /recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/recursive.c -------------------------------------------------------------------------------- /resources/agrep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/resources/agrep.gif -------------------------------------------------------------------------------- /sgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/sgrep.c -------------------------------------------------------------------------------- /unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/unistd.h -------------------------------------------------------------------------------- /utilitie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/utilitie.c -------------------------------------------------------------------------------- /utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/utilities.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikinaut/agrep/HEAD/version.h --------------------------------------------------------------------------------