#shell-parser #shell #command-parser #string-parser #parser

comma

Shell-style command parser with support for escaping and quotations

4 releases (1 stable)

1.0.0 Aug 23, 2021
0.1.2 Aug 6, 2019
0.1.1 Aug 5, 2019
0.1.0 Aug 5, 2019

#668 in Parser implementations

Download history 9621/week @ 2024-12-10 8640/week @ 2024-12-17 7685/week @ 2024-12-24 10656/week @ 2024-12-31 13664/week @ 2025-01-07 17014/week @ 2025-01-14 20849/week @ 2025-01-21 19519/week @ 2025-01-28 23726/week @ 2025-02-04 21655/week @ 2025-02-11 17259/week @ 2025-02-18 19439/week @ 2025-02-25 21867/week @ 2025-03-04 19873/week @ 2025-03-11 19440/week @ 2025-03-18 17785/week @ 2025-03-25

82,576 downloads per month
Used in 52 crates (7 directly)

MIT license

6KB
74 lines

comma

Crates.io docs.rs Build Status

comma splits shell-style commands, e.g. sendmsg joe "I say \"hi\" to you!", into a list of individual tokens. It correctly handles unicode characters, escape sequences, and single- or double-quoted strings.

Cargo

[dependencies]
comma = "1.0.0"

Usage

use comma::parse_command;

fn main () {
    let parsed = parse_command("sendmsg joe \"I say \\\"hi\\\" to you!\" 'but only\\ntoday'").unwrap();
    println!("Result: {:#?}", parsed); // Result: [ "sendmsg", "joe", "I say \"hi\" to you!", "but only\ntoday" ]
}

No runtime deps