mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-07 15:26:45 +02:00
Variable substr
This commit is contained in:
@@ -46,6 +46,10 @@ echo '$VARIABLE'
|
|||||||
echo ${VARIABLE/Some/A}
|
echo ${VARIABLE/Some/A}
|
||||||
# This will substitute the first occurance of "Some" with "A"
|
# This will substitute the first occurance of "Some" with "A"
|
||||||
|
|
||||||
|
# Substring from a variable
|
||||||
|
echo ${VARIABLE:0:7}
|
||||||
|
# This will return only the first 7 characters of the value
|
||||||
|
|
||||||
# Default value for variable
|
# Default value for variable
|
||||||
echo ${FOO:-"DefaultValueIfFOOIsMissingOrEmpty"}
|
echo ${FOO:-"DefaultValueIfFOOIsMissingOrEmpty"}
|
||||||
# This works for null (FOO=), empty string (FOO=""), zero (FOO=0) returns 0
|
# This works for null (FOO=), empty string (FOO=""), zero (FOO=0) returns 0
|
||||||
|
Reference in New Issue
Block a user