当前位置: 技术问答>linux和unix
请教script高手
来源: 互联网 发布时间:2015-04-23
本文导语: 下面的语句是什么意思,请详细解说,谢谢! :${T_MAIL:=$_MAIL} 不明白":="代表什么意思?另$前的“:”又是什么意思? | 第一个:是一个空(null)命令,返回0。 ${parameter:=word} Assign Default Va...
下面的语句是什么意思,请详细解说,谢谢!
:${T_MAIL:=$_MAIL}
不明白":="代表什么意思?另$前的“:”又是什么意思?
:${T_MAIL:=$_MAIL}
不明白":="代表什么意思?另$前的“:”又是什么意思?
|
第一个:是一个空(null)命令,返回0。
${parameter:=word}
Assign Default Values. If parameter is unset or null, the expansion of word shall be assigned to parameter. In all cases, the final value of parameter shall be substituted. Only variables, not positional parameters or special parameters, can be assigned in this way.
${parameter:=word}
Assign Default Values. If parameter is unset or null, the expansion of word shall be assigned to parameter. In all cases, the final value of parameter shall be substituted. Only variables, not positional parameters or special parameters, can be assigned in this way.