bash:strings:concatenating_strings
This is an old revision of the document!
BASH - Strings - Concatenating Strings
To concatenate two variables you can just write them one after another:
#!/bin/bash string1="Hello" string2="World" string=$string1$string2 echo "$string is the concatenation of $string1 and $string2."
NOTE: The following program outputs the string “HelloWorld is the concatenation of Hello and World.”.
a='Hello' b='World' c="${a} ${b}" echo "${c}" > Hello World
or
foo="Hello" foo="${foo} World" echo "${foo}" > Hello World
bash/strings/concatenating_strings.1610576252.txt.gz · Last modified: 2021/01/13 22:17 by peter