Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
In [3]:
:sccache 1
Out[3]:
In [4]:
use std::process::Command;
In [5]:
Command::new("bash")
.arg("-c")
.arg("echo hello")
.output()
.expect("failed to execute process")
Out[5]:
In [7]:
Command::new("bash")
.arg("-c")
.arg("echo hello")
.status()
Out[7]:
In [ ]:
In [ ]:
References¶
In [ ]: