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:
commit
4ffa934f61
@ -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!
|
||||
|
Loading…
x
Reference in New Issue
Block a user