How to append lots of variables to one variable with a simple command
I want to stick all the variables into one variable A=('blah') AA=('blah2') AAA=('blah3') AAB=('blah4') AAC=('blah5') #^^lets pretend theres 100 more of these ^^ #Variable composition #after AAA, is AAB then AAC then AAD etc etc, does that 100 times I want them all placed into this MASTER variable #MASTER=${A}${AA}${AAA} (<-- insert AAB, AAC and 100 more variables here) I obviously don't want to type 100 variables in this expression because there's probably an easier way to do this. Plus I'm gonna be doing more of these therefore I need it automated. I'm relatively new to sed, awk, is there a