mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-08 14:00:37 +00:00
fixes
This commit is contained in:
parent
8982636c1e
commit
46fb17bf96
11
README.md
11
README.md
@ -1,13 +1,12 @@
|
||||
# rga - ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc
|
||||
|
||||
rga is a tool to recursively search for text in many different types of files. It is based on the awesome [ripgrep](https://github.com/BurntSushi/ripgrep).
|
||||
|
||||
[![Linux build status](https://travis-ci.org/phiresky/ripgrep_all.svg)](https://travis-ci.org/BurntSushi/ripgrep)
|
||||
[![Crates.io](https://img.shields.io/crates/v/ripgrep_all.svg)](https://crates.io/crates/ripgrep_all)
|
||||
|
||||
similar:
|
||||
|
||||
- pdfgrep
|
||||
- https://gist.github.com/ColonolBuendia/314826e37ec35c616d70506c38dc65aa
|
||||
|
||||
# todo
|
||||
|
||||
- jpg adapter (based on object classification / detection (yolo?)) for fun
|
||||
@ -41,3 +40,9 @@ export RUST_BACKTRACE=1
|
||||
```
|
||||
|
||||
Also rember to disable caching with `--rga-no-cache` or clear the cache in `~/.cache/rga` to debug the adapters.
|
||||
|
||||
# Similar tools
|
||||
|
||||
- [pdfgrep](https://pdfgrep.org/)
|
||||
- [this gist](https://gist.github.com/phiresky/5025490526ba70663ab3b8af6c40a8db) has my proof of concept version of a caching extractor to use ripgrep as a replacement for pdfgrep.
|
||||
- [this gist](https://gist.github.com/ColonolBuendia/314826e37ec35c616d70506c38dc65aa) is a more extensive preprocessing script by [@ColonolBuendia](https://github.com/ColonolBuendia)
|
||||
|
@ -39,7 +39,7 @@ main() {
|
||||
fi
|
||||
|
||||
# Test that zsh completions are in sync with ripgrep's actual args.
|
||||
"$(dirname "${0}")/test_complete.sh"
|
||||
# "$(dirname "${0}")/test_complete.sh"
|
||||
|
||||
# Run tests for ripgrep and all sub-crates.
|
||||
"$CARGO" test --target "$TARGET" --verbose --all
|
||||
|
Loading…
Reference in New Issue
Block a user