web123456

How to connect strings in Linux shell scripts

If you want to add a character after a variable, you can use the following method:

$value1=home

$value2=${value1}"="

echo $value2

Add the string variable to be added {} and you need to put $ outside.

The result of this output is: home=, which means the connection is successful.