Reputation: 1358
I have large zstd-compressed text files.
How can I run fast search over them ?
Can I use AG (The Silver Searcher) or something similar ?
I've tried AG but it doesn't work, I have a "failed to load error" :
ag -z -i "term"
Upvotes: 11
Views: 22994
Reputation: 12895
Use zstdgrep
.
It is like grep, but for searching through zstd-compressed files.
Upvotes: 16