fn contains_separator(output: &str) -> boolExpand description
true when output contains a path separator. Windows accepts both \ and /, and Rust’s
Path treats both as separators there, so both are checked rather than just
std::path::MAIN_SEPARATOR.