任何人都可以请我解释为什么有些
Linux专家建议我们在Bash脚本中使用${VARIABLE}?似乎没有任何差别.
解决方法
假设您要立即打印$VARIABLE后跟“string”
echo "$VARIABLEstring" # tries to print the variable called VARIABLEstring echo "${VARIABLE}string" # prints $VARIABLE and then "string"
Bash还使用此语法支持string manipulation.