1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Fixed line 59 - printing

Using echo with ' ' means that the variable won't be expanded, so it should print the literal $Variable instead of some string.
This commit is contained in:
Joyce Kung
2017-10-13 12:10:32 -04:00
committed by GitHub
parent 593e2baff7
commit 027e152dda

View File

@@ -56,7 +56,7 @@ Variable= 'Some string' # => returns error: "Some string: command not found"
# Using the variable:
echo $Variable # => Some string
echo "$Variable" # => Some string
echo '$Variable' # => Some string
echo '$Variable' # => $Variable
# When you use the variable itself — assign it, export it, or else — you write
# its name without $. If you want to use the variable's value, you should use $.
# Note that ' (single quote) won't expand the variables!