summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authoroliv37 <olivier.boisse@laposte.net>2020-04-20 20:42:18 +0200
committerAndrew Ryan Davis <AndrewDavis1191@gmail.com>2020-05-26 18:13:38 -0700
commit7f1dc6ce2bde538ecaa8e8c51449215a75440d9d (patch)
tree2f22fb8896cdf397a066262006fa95606234b01e /bash.html.markdown
parent6955861bbadd3b5e1cbe615c665186ec399b35e7 (diff)
fix typo bash.html.markdown
Diffstat (limited to 'bash.html.markdown')
-rw-r--r--bash.html.markdown2
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"}