在给定变量名称后,ksh中是否有办法获取变量的值?
例如:
#!/usr/bin/ksh
var_name=$1 #pretend here that the user passed the string "PATH"
echo ${$var_name} #echo value of $PATH -- what do I do here?
最佳答案
var_name=$1 #pretend here that the user passed the string "PATH"
printenv $var_name
关于ksh - 在korn shell中如何获得给定变量名称的值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/870860/