agrep
agrep copied to clipboard
AGREP - approximate GREP for fast fuzzy string searching. Files are searched for a string or regular expression, with approximate matching capabilities and user-definable records. Developed 1989-1991...
A sequence of errors occurred during installation when calling the 'make' command. In general, most of them seem to be related to implicit declarations, examples: - newmgrep.c:980:61: error: implicit declaration...
Is it possible to search in utf-8 files? I have some foreign names in my file and the -ia option doesn't return those names. I also tried the codepages 437,...
I suggest to reuse a higher level build system than [your current small make file](https://github.com/Wikinaut/agrep/blob/ad61ed6add3d86c1c1aff81c0dcfe3326a46fef0/Makefile#L4) so that powerful checks for software features will become easier. - [CMake](http://cmake.org/) - [Autotools](http://www.gnu.org/software/autoconf/#TOCintroduction)
I use agrep in [ding](https://www-user.tu-chemnitz.de/~fri/ding/). There I searched for "Straße", which resulted in the following search command: `agrep -h -w -i -B -y -e "Strasse,Straße" /usr/share/trans/de-en` This throws the message...
Working around this is possible by piping to awk and using an NR==FNR program. It would wonderful to have access to grep like -B and -A context lines.
I suggest using Coverity Scan for the agrep code to detect more code issues similar to those reported in pull request #13. See [this Leptonica issue](https://github.com/DanBloomberg/leptonica/issues/208) for a similar request....
These commits fix two unrelated memory issues which were identified by Valgrind. The duplicate free problem caused a crash and triggered my investigations. See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=869220.
I would like to know what is the match position in the record. Is there something i don't get ? I don't get exactly what ```-b``` and ```-q``` do and...
Sure, one can work in combination with find, but would be a nice extra.
Hi, I am a post-doc in Stanford University, who is bioinformatician on cancer genomic field. Thank you for making great program. I am just wondering I can select records that...