Bash双引号前的美元字符

前端之家收集整理的这篇文章主要介绍了Bash双引号前的美元字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近读了一些bash代码,echo $“asdf”,什么是$for?

$“asdf”和“asdf”有什么区别?

bash manual中所述,它用于本地化:

A double-quoted string preceded by a dollar sign (‘$’) will cause the string to be translated according to the current locale. If the current locale is C or POSIX,the dollar sign is ignored. If the string is translated and replaced,the replacement is double-quoted.

原文链接:https://www.f2er.com/bash/387070.html

猜你在找的Bash相关文章