I want append to a string so that every time I loop over it will add say \"test\" to the string.
Like in PHP you would do:
$teststr = \"test1\\n\" $t
teststr=$'test1\n' teststr+=$'test2\n' echo "$teststr"