Sbprocess Verified May 2026
use std::process::Command; let output = Command::new("sh") .arg("-c") .arg("echo hello | grep h") .output() .expect("failed to execute");
// Run with environment cmd("python script.py") .env("DEBUG", "1") .current_dir("/app") .run()?; sbprocess
cargo add sbprocess