Expand description
Shell quoting utilities.
Functionsยง
- join_
args - Join arguments with proper quoting for shell execution.
- quote
- Quote a string for use in a shell command. This wraps the string in single quotes and escapes any existing single quotes.
- quote_
always - Quote a string for use as a shell argument, always using quotes.
- split_
args - Parse a shell command string into arguments. Uses shell-words crate for proper handling.