pub fn split_str(string: &str) -> Vec<String>Expand description
Splits string by whitespace and by quoted groups (both single
and double quotes), also supports escaping quotes using \ (note
that it will remove any backslashes used to escape things, so
escape any backslashes you want left in.)