linux – $VARIABLE和${VARIABLE}之间有什么区别

前端之家收集整理的这篇文章主要介绍了linux – $VARIABLE和${VARIABLE}之间有什么区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都可以请我解释为什么有些 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.

原文链接:https://www.f2er.com/linux/394524.html

猜你在找的Linux相关文章