diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2017-10-14 01:59:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-14 01:59:35 +0300 |
commit | 4ffa934f614841b32a1cb81842776e7f420d1d82 (patch) | |
tree | 180333d2f38ce77cc07279dfe3b5b1dd77d44da2 | |
parent | 593e2baff79f2ac8e13ad2ccc8570415050106a0 (diff) | |
parent | 027e152dda5f26e2aa74f6739c21f9ca3a8a4fde (diff) |
Merge pull request #2907 from thejoycekung/patch-1
[bash/en] Edited output on line 59
-rw-r--r-- | bash.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 981d7a1e..0c097c27 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -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! |