Is there a way to hide omitted matches entirely? #1779
-
For example, when I use
And there can be quite a lot of such matches, to the point when it is hard to find actually relevant non-omitted ones. Is there some flag that hides such matches completely? I wasn't able to find anything like that in the man pages. |
Beta Was this translation helpful? Give feedback.
Answered by
BurntSushi
Jan 8, 2021
Replies: 1 comment 2 replies
-
No. The simplest way would be to filter the output. For example, with |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Rogach
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. The simplest way would be to filter the output. For example, with
rg -vF '[Omitted long line with'
.