diff --git a/3_3__Using_Command-Line_Variables.md b/3_3__Using_Command-Line_Variables.md index 7c9d51e..e54d66f 100644 --- a/3_3__Using_Command-Line_Variables.md +++ b/3_3__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, and the equivalent to ``VARIABLE=`command```. The command inside the parentheses is run, then assigned to the VARIABLE. +That's a simple command substitution, and 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: ```