📜  环境变量中的单引号 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:37.555000             🧑  作者: Mango

代码示例1
V='some substrings grouped together'  # assignment
X="Put $V to make a longer string"    # substitution and then assignment
Y=`date`                              # run command, assign its output
Z='Put $V to make a longer string'    # no substition, simple assignment