FontName=Ubuntu
FontSize=300
let $FontName$FontSize=21
Getting the value is easy using the following:
echo $Ubuntu300
21
However, how can I get the same result using variables?
I tried something like:
echo ${!FontName!FontSize}
but no luck, I hope I am at least close!