diff options
Diffstat (limited to 'bash.html.markdown')
| -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.) | 
