--glob not processing absolute paths correctly
Closed this issue · 1 comments
Olie440 commented
BurntSushi commented
I don't think this is a bug. I don't see how to implement this behavior. Notice that grep
has the same behavior:
$ tree
.
└── foo
0 directories, 1 file
$ cat foo
test
$ rg test -g '!/tmp/ripgrep-479/test'
foo
1:test
$ grep -r test --exclude /tmp/ripgrep-479/test
foo:test
Perhpas this is a documentation bug.