Description
Submitted by miguelangel on Wed, 11/18/2009 - 06:29
When a big application is being developed, it is usual to fight with a lot of source files, and it is necessary to search for a lot of words ( vars, function names, constants, etc.). In a lot of cases, grep is enough to help in this searchs, but other times, it is not.
This program tries to help in these cases:
- It allows to save profiles with different configurations of search directories.
- You will be able to open the file in your favourite editor (any one at your election) with a mouse click.
- You can choose if you want search only in last search matching files. You can notice this is not the same as "$ grep word|grep word2", so it is similar to "$ grep word2 `grep -H word|cut -f1 -d':'`"
- It allows to show one or more lines near the matching one (the matching one will be highlighted).
- Well... There are not more requirements, but when you use pygrep, you will be able to share your experience.

