我最近发现,当未设置该变量时,Bash可以将变量设置为默认值(如this post中所述)。
不幸的是,当默认值是数组时,这似乎不起作用。作为一个例子考虑,
default_value=(0 1 2 3 4)
my_variable=${my_variable:=("${default_value[@]}")}
echo ${my_variable[0]}
(0 a 2 3 4) #returns array :-(
echo ${my_variable[1])
#returns empty
有谁知道这是怎么回事?请注意,将:=
更改为:-
无效。
另一个问题是,我们获得的任何解决方案也应该适用于事先已经设置my_variable
的情况,以便
my_variable=("a" "b" "c")
default_value=(0 1 2 3 4)
my_variable=${my_variable:=("${default_value[@]}")}
echo ${my_variable[0]}
"a"
echo ${my_variable[1]}
"b"
echo ${my_variable[2]}
"c"
答案 0 :(得分:2)
使数组使用:
unset my_variable default_value
default_value=("a b" 10)
my_variable=( "${my_variable[@]:-"${default_value[@]}"}" )
printf "%s\n" "${my_variable[@]}"
a b
10
printf "%s\n" "${default_value[@]}"
a b
10
根据man bash
:
${parameter:-word}
Use Default Values. If parameter is unset or null, the expansion of word is substituted.
Otherwise, the value of parameter is substituted.