-
I am writing an utility that works as a filter (it produces output on |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
For now I have solved it with App::new(...).
...
.get_matches_safe()
.unwrap_or_else(|err| {
eprintln!("{}", err.message);
std::process::exit(1);
}); It works, but feels a bit ugly to me. Anyway, it would be nice if |
Beta Was this translation helpful? Give feedback.
-
Could you create an issue please about the configuration? Thanks |
Beta Was this translation helpful? Give feedback.
For now I have solved it with
It works, but feels a bit ugly to me. Anyway, it would be nice if
Error:: use_stderr()
were configurable in some way instead of hard-coded like it is now.