From e524305d0769bfdcf04a74883956a0b8ca5c44a2 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Thu, 5 Feb 2026 12:21:23 -1000 Subject: [PATCH] Update 03_3a_Interlude_Using_Command-Line_Variables.md --- 03_3a_Interlude_Using_Command-Line_Variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_3a_Interlude_Using_Command-Line_Variables.md b/03_3a_Interlude_Using_Command-Line_Variables.md index 2b02125..ad79f3e 100644 --- a/03_3a_Interlude_Using_Command-Line_Variables.md +++ b/03_3a_Interlude_Using_Command-Line_Variables.md @@ -6,7 +6,7 @@ If you're using `bash`, you can save information to a variable like this: ``` $ VARIABLE=$(command) ``` -That's a simple command substitution, the equivalent to ``VARIABLE=`command` ``. The command inside the parentheses is run, then assigned to the VARIABLE. +That's a simple command substitution, the equivalent to `VARIABLE=\`command\` `. The command inside the parentheses is run, then assigned to the VARIABLE. To create a new address would then look like this: ```