gpt4 book ai didi

rust - 有没有办法让 clap 覆盖 [ -h | --help ] 标记帮助文本?

转载 作者:行者123 更新时间:2023-11-29 08:36:19 24 4
gpt4 key购买 nike

我正在遵循 Rust Clap Package 文档中的示例代码,但找不到有关自动生成标志 [-h 和 --help] 的帮助文本的任何引用。

extern crate clap;

use clap::{App, Arg, SubCommand};

fn main() {
let matches = App::new("Command One")
.version("1.0")
.author("Some Author <the_account@provider.com>")
.about("Descripción del comando.")
.arg(Arg::with_name("config")
.short("c")
.long("config")
.value_name("FILE")
.help("Sets a custom config file")
.takes_value(true))
.arg(Arg::with_name("INPUT")
.help("Sets the input file to use")
.required(true)
.index(1))
.arg(Arg::with_name("v")
.short("v")
.multiple(true)
.help("Sets the level of verbosity"))

// *** I'm trying this ***
.arg(Arg::with_name("help")
.short("h")
.long("help")
.help("A new help text."))
// ***********

.subcommand(SubCommand::with_name("test")
.about("controls testing features")
.version("1.3")
.author("Someone E. <someone_else@other.com>")
.arg(Arg::with_name("debug")
.short("d")
.help("print debug information verbosely")))
.get_matches();

let config = matches.value_of("config").unwrap_or("default.conf");
println!("Value for config: {}", config);

println!("Using input file: {}", matches.value_of("INPUT").unwrap());

match matches.occurrences_of("v") {
0 => println!("No verbose info"),
1 => println!("Some verbose info"),
2 => println!("Tons of verbose info"),
3 | _ => println!("Don't be crazy"),
}

if let Some(matches) = matches.subcommand_matches("test") {
if matches.is_present("debug") {
println!("Printing debug info...");
} else {
println!("Printing normally...");
}
}
}

最佳答案

要更改帮助文本中-h/--help 参数的说明,请使用help_message方法。同样,要更改 -V/--version 的描述,请使用 version_message .

extern crate clap;

use clap::App;

fn main() {
let matches = App::new("app")
.help_message("this is the help command")
.version_message("this is the version command")
.get_matches_from(&["app", "--help"]);
}

输出:

app 

USAGE:
app

FLAGS:
-h, --help this is the help command
-V, --version this is the version command

关于rust - 有没有办法让 clap 覆盖 [ -h | --help ] 标记帮助文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48676079/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com