2017-05-31 19:41:54 +00:00
|
|
|
use clap::{App, Arg};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let matches = App::new("myprog")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("eff").short('f'))
|
|
|
|
.arg(Arg::new("pea").short('p').takes_value(true))
|
2021-06-16 05:28:25 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("slop")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple_values(true)
|
2021-08-03 11:41:54 +00:00
|
|
|
.last(true), // Indicates that `slop` is only accessible after `--`.
|
2021-06-16 05:28:25 +00:00
|
|
|
)
|
2017-05-31 19:41:54 +00:00
|
|
|
.get_matches();
|
|
|
|
|
2021-08-03 11:41:54 +00:00
|
|
|
// This is what will happen with `myprog -f -p=bob -- sloppy slop slop`...
|
|
|
|
println!("-f used: {:?}", matches.is_present("eff")); // -f used: true
|
|
|
|
println!("-p's value: {:?}", matches.value_of("pea")); // -p's value: Some("bob")
|
2018-01-25 04:05:05 +00:00
|
|
|
println!(
|
|
|
|
"'slops' values: {:?}",
|
|
|
|
matches
|
|
|
|
.values_of("slop")
|
|
|
|
.map(|vals| vals.collect::<Vec<_>>())
|
2021-08-03 11:41:54 +00:00
|
|
|
); // 'slops' values: Some(["sloppy", "slop", "slop"])
|
2017-05-31 19:41:54 +00:00
|
|
|
|
|
|
|
// Continued program logic goes here...
|
|
|
|
}
|