pub fn get_args(subcommand: &str) -> Vec<String>
Expand description
get_args
is a wrapper of std::env::args
that strips a possible
cargo subcommand. This allows for a binary BINARY
to be called
both with cargo BINARY args...
and cargo-BINARY args...
.