Answers for "How to concatenate string variables in Bash"

0

How to concatenate string variables in Bash

Bash also supports a += operator as shown in this code:

A="X Y"
A+=" Z"
echo "$A"
output

X Y Z
Posted by: Guest on February-05-2022

Code answers related to "How to concatenate string variables in Bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language