ripgrep
ripgrep copied to clipboard
ripgrep recursively searches directories for a regex pattern while respecting your gitignore
Printing file paths as `file` URLs is very handy since you can click on them and the file will open. This happens in Konsole at least.
Needed for https://github.com/BatmanAoD/RipPatch
Use separate stacks for files and directories and limit the size of file stack to significantly reduce memory usage. This also noticeably speeds up execution in contexts where you have...
I'm working in a version control system that all files are symlinks to a shared cache system (to save space). So I need to use -L (--follow), otherwise ripgrep hit...
#### What version of ripgrep are you using? Git master (2022/06/06), unsuccessful build. #### How did you install ripgrep? In an `alpine:edge` Docker container, I run: ``` apk --no-cache add...
#### What version of ripgrep are you using? ``` ripgrep 13.0.0 +SIMD -AVX (compiled) +SIMD +AVX (runtime) ``` #### How did you install ripgrep? Through the FreeBSD ports collection ####...
Currently, when `-x/--line-regexp` and `-F` are given to ripgrep, Aho-Corasick won't be used because the `-x` flag turns each pattern into a regex via `(?m)^(?:pattern)$`. This in turn causes the...
#### What version of ripgrep are you using? ``` ripgrep 11.0.2 -SIMD -AVX (compiled) +SIMD +AVX (runtime) ``` #### How did you install ripgrep? ``` apt-get ``` #### What operating...
#### Describe your feature request I'm writing a Git pre-commit hook that should prevent me from committing certain sections I have marked `DO NOT COMMIT`. I would like to do...
See https://github.com/BurntSushi/ripgrep/issues/595#issuecomment-1100180996