diff --git a/wiki/Command-Line-Parsing.md b/wiki/Command-Line-Parsing.md index 9c6de051..a9007732 100644 --- a/wiki/Command-Line-Parsing.md +++ b/wiki/Command-Line-Parsing.md @@ -16,12 +16,12 @@ In zsh, if an argument contains a `~`, `|`, `!`, `>`, or `<`, you must enclose t To embed a `'` in a string enclosed in `"`, enter `'`; `name "Test'Group"`. +To embed a `"` in a string enclosed in `"`, enter `\"`; `name "Test\"Group"`. + To embed a `"` in a string enclosed in `'`, enter `"`; `name 'Test"Group'`. To embed a `'` in a string enclosed in `'`, enter `'\''`; `name 'Test'\''Group'`. -To embed a `"` in a string enclosed in `"`, enter `\"`; `name "Test\"Group"`. - Linux and MacOS do not recognize smart or curly quotes, `“` and `”`, they can not be used to enclose arguments. ## Windows Command Prompt