Variables

Name and access a variable based on another variable

$ var="world"
$ eval "hello_$var=value"
$ eval printf '%s\n' "\$hello_$var"
value