1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-03-22 23:30:35 +01:00

Merge pull request #2907 from thejoycekung/patch-1

[bash/en] Edited output on line 59
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë 2017-10-14 01:59:35 +03:00 committed by GitHub
commit 4ffa934f61

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!