Update 03_3a_Interlude_Using_Command-Line_Variables.md

This commit is contained in:
Shannon Appelcline 2026-02-05 12:21:23 -10:00 committed by GitHub
parent 1030a1030e
commit e524305d07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ If you're using `bash`, you can save information to a variable like this:
``` ```
$ VARIABLE=$(command) $ 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: To create a new address would then look like this:
``` ```