How achieve variable indirection (refer to a variable whose name is stored in another variable) in tcsh
I'm trying to do the following:
set a = kitten
set temp_kitten = purr
echo ${temp_$a}
I want the `echo` command to return "purr".
The overall idea is that I have a bunch of variables in an array and a bunch of `temp_variables` in another array and I want to loop through them in a single `foreach` loop for comparison.