television-utils 0.0.23

The revolution will be televised.
Documentation
use std::process::Command;

#[cfg(not(windows))]
pub fn shell_command() -> Command {
    let mut cmd = Command::new("sh");

    cmd.arg("-c");

    cmd
}

#[cfg(windows)]
pub fn shell_command() -> Command {
    let mut cmd = Command::new("cmd");

    cmd.arg("/c");

    cmd
}