vote up 0 vote down star

Is there a way in ksh to get a variable's value when you have been given the name of the variable?

For example:

#!/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?
flag

2 Answers

vote up 1 vote down check

var_name=$1 #pretend here that the user passed the string "PATH"

printenv $var_name

link|flag
clean and simple, thank you! – mtruesdell May 18 at 13:25
vote up 2 vote down
eval `echo '$'$var_name`

echo concatenates a '$' to the variable name inside $var_name, eval evaluates it to show the value.

EDIT: The above isn't quite right. The correct answer is with no backticks.

eval echo '$'$var_name
link|flag
I tried this on cygwin and linux, but it didn't work. It works if you remove the backticks: eval echo '$'$var_name – mtruesdell May 16 at 23:08
Indeed. I have edited my answer to correct it. – Kevin Beck May 17 at 23:58
this is a more general solution than the "printenv" one, which only applies to environment variables – Joe Watkins Aug 19 at 9:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.