getopt

Crates.iogetopt
lib.rsgetopt
version1.1.6
sourcesrc
created_at2018-11-06 03:32:29.668957
updated_at2024-03-30 03:25:42.23668
descriptionA minimal, (essentially) POSIX-compliant option parser
homepage
repositoryhttps://git.dragonma.us/rust/getopt
max_upload_size
id94958
size29,063
(dragonmaus)

documentation

README

getopt

A minimal, (essentially) POSIX-compliant option parser.

getopt::Parser iterates over the provided arguments, producing options one at a time in the order in which they are given on the command line, and stopping at the first non-option argument.

Example:

#![allow(unused_assignments, unused_variables)]

use getopt::Opt;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut args: Vec<String> = std::env::args().collect();
    let mut opts = getopt::Parser::new(&args, "ab:");

    let mut a_flag = false;
    let mut b_flag = String::new();
    loop {
        match opts.next().transpose()? {
            None => break,
            Some(opt) => match opt {
                Opt('a', None) => a_flag = true,
                Opt('b', Some(string)) => b_flag = string.clone(),
                _ => unreachable!(),
            }
        }
    }

    let args = args.split_off(opts.index());

    // …

    Ok(())
}

Links:

Commit count: 0

cargo fmt