Creates a new Command with platform-specific configurations to prevent console windows from appearing on Windows. On Windows, this sets the CREATE_NO_WINDOW flag to prevent a terminal window from popping up when the process is spawned. # Example ``` use command_utils::new_command; let output = new_command("git") .arg("status") .output()?; ```
(program: impl AsRef<str>)
source not stored for this graph (policy: none)
no test coverage detected