-
I'm trying to search from root, but excluding some directories like Here's what I've tried in order to remove the
But My
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The I ended up running this to exclude
|
Beta Was this translation helpful? Give feedback.
The
--follow
was conflicting with the exclusion of/proc
since that dir isn't really a dir or a file (it is treated differently by Linux).I ended up running this to exclude
/proc
and other things (notice that--no-follow
makes it work):rg -g '!{/proc,/sys,**/*.js,**/*.css,/home,**/*.py}' --no-follow firefox /