Exclude an exact match #1576
Answered
by
tavianator
WhyNotHugo
asked this question in
Q&A
-
I want to run Note that I'm actually constructing the command programmatically to "ignore the currently open file" in Vim (full context), so I want a solution that works with arguments (e.g.: I can't add it to Is this currently viable? |
Beta Was this translation helpful? Give feedback.
Answered by
tavianator
Jun 17, 2024
Replies: 1 comment 3 replies
-
Could you use a pipeline? $ fd Cargo.toml
Cargo.toml
compiler/rustc_ast/Cargo.toml
compiler/rustc_ast_passes/Cargo.toml
...
$ fd Cargo.toml | grep -Fxv 'Cargo.toml'
compiler/rustc_ast/Cargo.toml
compiler/rustc_ast_passes/Cargo.toml
... |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
WhyNotHugo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could you use a pipeline?