mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-08 14:00:37 +00:00
26 lines
562 B
Markdown
26 lines
562 B
Markdown
similar:
|
|
|
|
- pdfgrep
|
|
- https://gist.github.com/ColonolBuendia/314826e37ec35c616d70506c38dc65aa
|
|
|
|
# todo
|
|
|
|
- jpg adapter (based on object classification / detection (yolo?)) for fun
|
|
- 7z adapter (couldn't find a nice to use rust library)
|
|
|
|
# considerations
|
|
|
|
- matching on mime (magic bytes) instead of filename
|
|
- allow per-adapter configuration options
|
|
|
|
# Development
|
|
|
|
To enable debug logging:
|
|
|
|
```bash
|
|
export RUST_LOG=debug
|
|
export RUST_BACKTRACE=1
|
|
```
|
|
|
|
Also rember to disable caching with `--rga-no-cache` or clear the cache in `~/.cache/rga` to debug the adapters.
|