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"); Command::new("gzip") .arg("../../target/docs/get-cve.1") .output() .expect("Fail for gzip running"); }