#cmd-line #parser #shell #building #default #bash-like #platform-resembling

cmdline-parser

Platform-resembling cmdline parsing for building shells

1 unstable release

Uses old Rust 2015

0.1.0 Feb 13, 2017

#15 in #cmd-line

Download history 35/week @ 2024-11-13 40/week @ 2024-11-20 43/week @ 2024-11-27 18/week @ 2024-12-04 54/week @ 2024-12-11 15/week @ 2024-12-18 23/week @ 2025-01-08 34/week @ 2025-01-15 8/week @ 2025-01-22 9/week @ 2025-01-29 47/week @ 2025-02-05 25/week @ 2025-02-12 26/week @ 2025-02-19 22/week @ 2025-02-26

124 downloads per month
Used in torus

MIT/Apache

13KB
277 lines

cmdline-parser

Documentation

Library to parse cmdlines in a way that resembles the platform default. Supports cmd and bash-like parsing.

Example

extern crate cmdline_parser;
use cmdline_parser::Parser;

fn main() {
    let mut parser = Parser::new(r#"mv "my file" project/"#);

    assert_eq!(parser.next(), Some((0..2, "mv".into())));
    assert_eq!(parser.next(), Some((3..12, "my file".into())));
    assert_eq!(parser.next(), Some((13..21, "project/".into())));
    assert_eq!(parser.next(), None);
}

Licence

This library is licensed under the terms of the MIT and Apache 2.0 licences.


lib.rs:

Parse cmdlines in a way that resembles the platform default.

Example

use cmdline_parser::Parser;

let mut parser = Parser::new(r#"mv "my file" project/"#);

assert_eq!(parser.next(), Some((0..2, "mv".into())));
assert_eq!(parser.next(), Some((3..12, "my file".into())));
assert_eq!(parser.next(), Some((13..21, "project/".into())));
assert_eq!(parser.next(), None);

No runtime deps