mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 17:14:42 +00:00
6 lines
110 B
Rust
6 lines
110 B
Rust
|
use std::process::Command;
|
||
|
|
||
|
fn main() {
|
||
|
Command::new("make").output().expect("failed to execute make");
|
||
|
}
|