mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
15 lines
375 B
Rust
15 lines
375 B
Rust
use clap::{command, Arg, ArgAction};
|
|
|
|
fn main() {
|
|
let matches = command!() // requires `cargo` feature
|
|
.arg(Arg::new("name").action(ArgAction::Append))
|
|
.get_matches();
|
|
|
|
let args = matches
|
|
.get_many::<String>("name")
|
|
.unwrap_or_default()
|
|
.map(|v| v.as_str())
|
|
.collect::<Vec<_>>();
|
|
|
|
println!("names: {:?}", &args);
|
|
}
|