rg not recursing when I give a directory for PATH #2521
-
I really feel like I'm doing something dumb here, but I can't figure it out. Any idea what I'm doing wrong? Thanks!
|
Beta Was this translation helpful? Give feedback.
Answered by
BurntSushi
May 28, 2023
Replies: 1 comment 4 replies
-
Please use |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, I know the issue. ripgrep skips binary files by default. So you need to pass
--binary
.-uuu
will also do the trick.When you ask to search a binary file explicitly (which is what
/boo/bar/bin/*
is doing since the shell expands the glob, not ripgrep), then--binary
is implied.