diff options
author | oliv37 <olivier.boisse@laposte.net> | 2020-04-20 20:42:18 +0200 |
---|---|---|
committer | Andrew Ryan Davis <AndrewDavis1191@gmail.com> | 2020-05-26 18:13:38 -0700 |
commit | 7f1dc6ce2bde538ecaa8e8c51449215a75440d9d (patch) | |
tree | 2f22fb8896cdf397a066262006fa95606234b01e /bash.html.markdown | |
parent | 6955861bbadd3b5e1cbe615c665186ec399b35e7 (diff) |
fix typo bash.html.markdown
Diffstat (limited to 'bash.html.markdown')
-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 407b237b..0adc2efe 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -91,7 +91,7 @@ echo ${#Variable} # => 11 # Indirect expansion OtherVariable="Variable" echo ${!OtherVariable} # => Some String -# This will expand the value of the OtherVariable +# This will expand the value of OtherVariable # Default value for variable echo ${Foo:-"DefaultValueIfFooIsMissingOrEmpty"} |