Hi there,
I wonder whether it is possible to name a variable after the contents of another variable.
i.e if I have the variables
$one = "ONE";
$two = "TWO";
$three = "THREE";
if it is possible to create the variable $THREE with the value ONE. I was thinking that something like this might work
$(echo $THREE😉 = $one;
But I got an error, so it clearly does not work. Does anyone have a suggestion?
cheers, anders