Yes, yes, I know you're probably like "Hey, there are hundreds of other people asking this same question", but that's not true; I'm not trying to do something like this:
foo="example1"
bar="example2"
foobar="$foo$bar"
I'm trying to do this:
foo="example1"
$foo="examle2"
But whenever I attempt this, I get an error message that says:
bash: example1=example2: command not found
Any suggestions? Is this even possible?