If I assign a variable:
testThis='echo "This is a test"'
If I use $testThis, it works in a script.
But, what if I want to skip a line ? So I try:
testThis='echo; echo "This is a test"'
and this fails!
Can't figure it out after much effort trying $() command substitution and all sorts of quoting.