From e85e7f68685f3e9b4c7120d665dd2f519212b155 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Wed, 27 May 2026 12:53:56 -0700 Subject: [PATCH] Update Command-Line-Parsing.md --- wiki/Command-Line-Parsing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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