Function 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");
§Examples
ⓘuse doe::system;
system("ls -a");