diff options
author | Etan Reisner <deryni@unreliablesource.net> | 2015-04-27 07:30:17 -0400 |
---|---|---|
committer | Etan Reisner <deryni@unreliablesource.net> | 2015-04-27 07:30:17 -0400 |
commit | aa11cc659de990a6c4d4104bcc733f373b079ae7 (patch) | |
tree | c5c948f928c7bcd301ee4fc30026c086d95252f8 | |
parent | e2ca2c9550474ca3dad0f7ef8735e614da081258 (diff) |
Follow variable capitalization on this branch.
-rw-r--r-- | bash.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 77ee37f6..e0c12f97 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -40,9 +40,9 @@ VARIABLE = "Some string" # because it can't be found. # Or like this: -Variable= 'Some string' +VARIABLE= 'Some string' # Bash will decide that 'Some string' is a command it must execute and give an -# error because it can't be found. (In this case the 'Variable=' part is seen +# error because it can't be found. (In this case the 'VARIABLE=' part is seen # as a variable assignment valid only for the scope of the 'Some string' # command.) |