mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Add example for default value
This commit is contained in:
parent
1f42f890f6
commit
c9a282d08f
@ -5,6 +5,7 @@ contributors:
|
||||
- ["Max Yankov", "https://github.com/golergka"]
|
||||
- ["Darren Lin", "https://github.com/CogBear"]
|
||||
- ["Alexandre Medeiros", "http://alemedeiros.sdf.org"]
|
||||
- ["Denis Arh", "https://github.com/darh"]
|
||||
filename: LearnBash.sh
|
||||
---
|
||||
|
||||
@ -45,6 +46,10 @@ echo '$VARIABLE'
|
||||
echo ${VARIABLE/Some/A}
|
||||
# This will substitute the first occurance of "Some" with "A"
|
||||
|
||||
# Default value for variable
|
||||
echo ${FOO:-"DefaultValueIfFOOIsMissingOrEmpty"}
|
||||
# This works for null (FOO=), empty string (FOO=""), zero (FOO=0) returns 0
|
||||
|
||||
# Bultin variables:
|
||||
# There are some useful builtin variables, like
|
||||
echo "Last program return value: $?"
|
||||
|
Loading…
Reference in New Issue
Block a user