mirror of
https://github.com/clap-rs/clap
synced 2025-01-09 19:28:45 +00:00
19 lines
440 B
Rust
19 lines
440 B
Rust
use clap::{command, Arg, ArgAction};
|
|
|
|
fn main() {
|
|
let matches = command!() // requires `cargo` feature
|
|
.arg(
|
|
Arg::new("verbose")
|
|
.short('v')
|
|
.long("verbose")
|
|
.action(ArgAction::Count),
|
|
)
|
|
.get_matches();
|
|
|
|
println!(
|
|
"verbose: {:?}",
|
|
matches
|
|
.get_one::<u8>("verbose")
|
|
.expect("Count always defaulted")
|
|
);
|
|
}
|