get-cwe 1.5.0

Tools for CVE managing, exploring and collect some data about their weaknesses and classifications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::process::Command;

fn main() {
    Command::new("asciidoctor")
        .arg("-b")
        .arg("manpage")
        .arg("-o")
        .arg("../../target/docs/get-cwe.1")
        .arg("docs/get-cwe.adoc")
        .output()
        .expect("asciidoctor failed");

    Command::new("gzip")
        .arg("../../target/docs/get-cwe.1")
        .output()
        .expect("Fail for gzip running");
}