diff --git a/src/main.rs b/src/main.rs index 3faf636..67a2c08 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,6 @@ +use std::process::Command; + fn main() { println!("Hello from phase 2 init"); + Command::new("/bin/ps2").spawn().unwrap(); }