mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
befee6667b
This creates distinct tutorial examples from complex feature examples (more how-tos). Both sets are getting builder / derive versions (at least the critical ones).
22 lines
669 B
Rust
22 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!(),
|
|
}
|
|
}
|