Recursive grep written in Go, for everyday ease of use.
Go to file
Laurence Withers d2cf57dcd9 Use regexp for case-insensitive literal matches
This commit switches back to using the regexp engine for
case-insensitive literal string matches.

This is slower, but at least case-insensitive matches for string
literals will function now. The code is a tiny bit shorter and simpler
too.

Given the aim of the tool is to be useful for ad-hoc searches,
efficiency isn't the concern but rather just getting the job done with
the minimum of fuss / unexpected behaviour.
2023-07-07 11:00:02 +01:00
.gitignore Very early work in progress 2023-05-11 23:30:43 +01:00
LICENSE Very early work in progress 2023-05-11 23:30:43 +01:00
README.md Initial commit 2023-05-11 21:34:39 +01:00
display.go Add some possible TODO items 2023-05-13 12:47:52 +01:00
file.go Use regexp for case-insensitive literal matches 2023-07-07 11:00:02 +01:00
go.mod Glob matching for exclude 2023-05-13 12:45:12 +01:00
go.sum Glob matching for exclude 2023-05-13 12:45:12 +01:00
main.go Use regexp for case-insensitive literal matches 2023-07-07 11:00:02 +01:00

README.md

gg

Recursive grep written in Go, for everyday ease of use.