1 2 3 4 5 6 7 8 9 10 11 12
use std::process::Command; fn main() { Command::new("asciidoctor") .arg("-b") .arg("manpage") .arg("-o") .arg("../../target/docs/get-cve.1") .arg("docs/get-cve.adoc") .output() .expect("asciidoctor failed"); }