1

我有一个foo使用Clap处理命令参数解析的程序。foo调用另一个程序,bar. 最近,我决定如果他们喜欢的话,我的用户foo应该能够传递参数。bar我将bar命令添加到 Clap:

let matches = App::new("Foo")
    .arg(Arg::with_name("file").value_name("FILE").required(true))
    .arg(
        Arg::with_name("bar")
            .value_name("[BAR_OPTIONS]")
            .short("b")
            .long("bar")
            .multiple(true)
            .help("Invoke bar with these options"),
    )
    .get_matches();

当我尝试将命令传递"-baz=3"bar这样的:

./foo -b -baz=3 file.txt

或者

./foo -b "-baz=3" file.txt

clap返回此错误:

error: Found argument '-b' which wasn't expected, or isn't valid in this context

如何通过 Clap 隧道命令?

4

1 回答 1

4

如果参数的值bar本身可能以连字符开头,那么您需要设置allow_hyphen_values选项:

let _matches = App::new("Foo")
    .arg(Arg::with_name("file").value_name("FILE").required(true))
    .arg(
        Arg::with_name("bar")
            .value_name("[BAR_OPTIONS]")
            .allow_hyphen_values(true)
            .short("b")
            .long("bar")
            .multiple(true)
            .help("Invoke bar with these options"),
    )
    .get_matches();
于 2019-01-15T03:03:13.187 回答