pub fn escape_shell_single_quotes(value: &str) -> StringExpand description
Escapes a string for safe use inside shell single quotes.
Strategy: wrap in single quotes and escape inner single quotes
with the sequence '\'' (close quote, backslash-quote, open quote).