fix typo bash.html.markdown

This commit is contained in:
oliv37 2020-04-20 20:42:18 +02:00 committed by Andrew Ryan Davis
parent 6955861bba
commit 7f1dc6ce2b

View File

@ -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"}