Streaming file list support? #1639
-
Hi! Does ripgrep support a streaming list of files to search in? For example, say I have a (possibly slow) command |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Nope, ripgrep has no way to do this on its own. You'd have to use |
Beta Was this translation helpful? Give feedback.
Nope, ripgrep has no way to do this on its own. You'd have to use
xargs
with-n
. Starting a new process for each batch doesn't seem to onerous to me, although I grant that it depends on what you're doing.