From 94a3b3c869d64d5eba7e2407aed0fc04b57403b4 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Tue, 28 Mar 2017 10:31:33 -0700 Subject: [PATCH] Update 3_3__Using_Command-Line_Variables.md --- 3_3__Using_Command-Line_Variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3_3__Using_Command-Line_Variables.md b/3_3__Using_Command-Line_Variables.md index e54d66f..016bc7d 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, 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: ```