Function doe::system

source ·
pub fn system(command: impl ToString) -> Result<()>
Expand description

Rust is a wrapper for the standard library’s std::process::Command function, which is used to execute external commands

     doe::system("ls");
     doe::system("ls -a");