Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.18 KB

_index.md

File metadata and controls

58 lines (44 loc) · 1.18 KB

+++ title = "Fast & Modern CLI Framework for Rust" +++

Clap is a simple-to-use, efficient, and full-featured library for parsing command line arguments and subcommands when writing console/terminal applications.

Here is an example of a simple program:

use clap::Parser;

/// Simple program to greet a person
#[derive(Parser, Debug)]
#[clap(name = "hello")]
struct Hello {
    /// Name of the person to greet
    #[clap(short, long)]
    name: String,

    /// Number of times to greet
    #[clap(short, long, default_value = "1")]
    count: u8,
}

fn main() {
    let hello = Hello::parse();

    for _ in 0..hello.count {
        println!("Hello {}!", hello.name)
    }
}

The above example program can be run as shown below:

$ hello --name John --count 3
Hello John!
Hello John!
Hello John!

The program also has automatically generated help message:

hello

Simple program to greet a person

USAGE:
    hello [OPTIONS] --name <name>

OPTIONS:
    -c, --count <count>    Number of times to greet [default: 1]
    -h, --help             Print help information
    -n, --name <name>      Name of the person to greet
    -V, --version          Print version information