How can I concat strings in shell? Is it just...
var = 'my'; var .= 'string';
?
How about this:
var="${var}string"