├── .gitignore ├── LICENSE ├── README.md ├── data └── grepbugs.db ├── etc └── grepbugs.cfg └── grepbugs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/README.md -------------------------------------------------------------------------------- /data/grepbugs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/data/grepbugs.db -------------------------------------------------------------------------------- /etc/grepbugs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/etc/grepbugs.cfg -------------------------------------------------------------------------------- /grepbugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foospidy/GrepBugs/HEAD/grepbugs.py --------------------------------------------------------------------------------