titibouboul
titibouboul

Reputation: 1358

Search through .zst text files

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

Answers (1)

gregory
gregory

Reputation: 12895

Use zstdgrep.

It is like grep, but for searching through zstd-compressed files.

Upvotes: 16

Related Questions