如果变量名称存储为字符串如何获取变量值?

前端之家收集整理的这篇文章主要介绍了如果变量名称存储为字符串如何获取变量值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有变量名称为字符串,如何获取一个bash变量值?
var1="this is the real value"
a="var1"
Do something to get value of var1 just using variable a.

上下文:

我有一些AMI的(Amazon Machine Image),我想启动每个AMI的几个实例。一旦他们完成引导,我想根据其AMI类型设置每个实例。我不想在任何AMI内烘焙大量的脚本或秘密密钥,所以我准备了一个广义的启动脚本,我把它放在S3与公开链接。在rc.local中,我把一小块代码取回启动脚本并执行它。这是我在AMIs。然后每个AMI访问一个通用的配置脚本,它适用于所有AMI和每个AMI的特殊设置脚本。这些脚本是专用的,需要签名的URL才能访问它们。

所以现在,当我触发一个AMI实例(my_private_ami_1)时,我传递一个签名的URL,在S3上显示的另一个文件包含签名的URL的所有私人脚本的键/值对。

config_url="http://s3.amazo.../config?signature"
my_private_ami_1="http://s3.amazo.../ami_1?signature"
...

当启动脚本运行时,它下载上述文件和源代码。然后检查其AMI类型并为其自身选择正确的安装脚本。

ami\_type=GET AMI TYPE #ex: sets ami\_type to my\_private\_ami\_1
setup\_url=GET THE SETUP FILE URL BASED ON AMI\_TYPE # this is where this problem arises

所以现在我可以有一个通用代码,可以触发实例,而不考虑他们的AMI类型,实例可以照顾自己。

您可以使用$ {!a}。

这是间接parameter expansion的示例:

The basic form of parameter expansion is ${parameter}. The value of
parameter is substituted.

If the first character of parameter is an exclamation point (!),it
introduces a level of variable indirection. Bash uses the value of the
variable formed from the rest of parameter as the name of the
variable; this variable is then expanded and that value is used in the
rest of the substitution,rather than the value of parameter itself.

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

猜你在找的Bash相关文章