I wonder why I get different results with this:
echo {a,b}.txt
a.txt b.txt
and this other:
A="a,b"
echo {$A}.txt
{a,b}.txt
I expect both of them to behave the same.