clarification about ripgrep functionality and possible example #1579
-
Ripgrep is capable of searching any file content for text and can also process a whole drive in theory? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You should just be able to run
Note though that I am not a Windows user. |
Beta Was this translation helpful? Give feedback.
You should just be able to run
.\rg.exe "E X I T H E L P"
and it will recursively search your current directory. If you only want to search exe files, then you can add-g "*.exe"
. Presumably, exe files are in a binary format, so you'll probably also need to force ripgrep to treat it as text, which means using the-a
(short for--text
). So I think your complete command is probably:Note though that I am not a Windows user.