mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
23 lines
669 B
Rust
23 lines
669 B
Rust
|
use clap::{app_from_crate, arg, App, AppSettings};
|
||
|
|
||
|
fn main() {
|
||
|
let matches = app_from_crate!()
|
||
|
.global_setting(AppSettings::PropagateVersion)
|
||
|
.global_setting(AppSettings::UseLongFormatForHelpSubcommand)
|
||
|
.setting(AppSettings::SubcommandRequiredElseHelp)
|
||
|
.subcommand(
|
||
|
App::new("add")
|
||
|
.about("Adds files to myapp")
|
||
|
.arg(arg!([NAME])),
|
||
|
)
|
||
|
.get_matches();
|
||
|
|
||
|
match matches.subcommand() {
|
||
|
Some(("add", sub_matches)) => println!(
|
||
|
"'myapp add' was used, name is: {:?}",
|
||
|
sub_matches.value_of("NAME")
|
||
|
),
|
||
|
_ => unreachable!(),
|
||
|
}
|
||
|
}
|