Como concatenar variáveis de string no Bash
Bash also supports a += operator as shown in this code:
A="X Y"
A+=" Z"
echo "$A"
output
X Y Z
shafeeque
Bash also supports a += operator as shown in this code:
A="X Y"
A+=" Z"
echo "$A"
output
X Y Z