Answers for "append string to variable"

10

combine strings bash

foo="Hello"
foo="${foo} World"
echo "${foo}"
> Hello World
Posted by: Guest on May-06-2020

Code answers related to "append string to variable"

Python Answers by Framework

Browse Popular Code Answers by Language