mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
88fff13e71
Since usage parser and yaml are on the way to being deprecated (#8, #9), doing a rename also seems excessive, so rolling it back. Past relevant PRs: - clap-rs/clap#1157 - clap-rs/clap#1257
35 lines
1.5 KiB
Rust
35 lines
1.5 KiB
Rust
use clap::{App, AppSettings, Arg};
|
|
|
|
fn main() {
|
|
// You can use AppSettings to change the application level behavior of clap. .setting() function
|
|
// of App struct takes AppSettings enum as argument. You can learn more about AppSettings in the
|
|
// documentation, which also has examples on each setting.
|
|
//
|
|
// This example will only show usage of one AppSettings setting. See documentation for more
|
|
// information.
|
|
|
|
let matches = App::new("myapp")
|
|
.setting(AppSettings::SubcommandsNegateReqs)
|
|
// Negates requirement of parent command.
|
|
.arg(Arg::from_usage("<input> 'input file to use'"))
|
|
// Required positional argument called input. This
|
|
// will be only required if subcommand is not present.
|
|
.subcommand(App::new("test").about("does some testing"))
|
|
// if program is invoked with subcommand, you do not
|
|
// need to specify the <input> argument anymore due to
|
|
// the AppSettings::SubcommandsNegateReqs setting.
|
|
.get_matches();
|
|
|
|
// Calling unwrap() on "input" would not be advised here, because although it's required,
|
|
// if the user uses a subcommand, those requirements are no longer required. Hence, we should
|
|
// use some sort of 'if let' construct
|
|
if let Some(inp) = matches.value_of("input") {
|
|
println!("The input file is: {}", inp);
|
|
}
|
|
|
|
match matches.subcommand_name() {
|
|
Some("test") => println!("The 'test' subcommand was used"),
|
|
None => {}
|
|
_ => unreachable!(),
|
|
}
|
|
}
|