引用变量

要使用存储在变量中的值,请使用 $,后跟括号或花括号括起来的变量名称。

x = hello
y = $(x)
# y now contains the value "hello"
y = ${x}
# parentheses and curly braces are treated exactly the same

如果变量的名称只有一个字符长,则可以省略括号/大括号(例如,$x)。此做法用于自动变量(见下文),但不建议用于通用变量。