Let's take this through example. An example ksh script is as below:
ab=123 c=a d=b echo "${c}${d}" # prints ab, but need to print contents of $ab ie. 123 echo "$ab" # prints content of $ab i.e. 123 How can I print content of varible formed through "${c}${d}" i.e. content of $ab thus formed