1pub fn shell_command() -> (&'static str, &'static str) { 2 if cfg!(windows) { ("cmd", "/C") } else { ("sh", "-c") } 3}