Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下 bash 语法是什么意思?
MY_VAR=${MY_VAR:-"mystring"}
先感谢您。
请参阅中的参数扩展man bash:
man bash
${参数:-字} 使用默认值。如果parameter未设置或为空,word 则替换 的扩展。否则,parameter替换 的值。
${参数:-字}
使用默认值。如果parameter未设置或为空,word 则替换 的扩展。否则,parameter替换 的值。
parameter
word