bash:concatenating_strings
This is an old revision of the document!
BASH - Concatenating Strings
#!/bin/bash string1="Hello" string2="World" string=$string1$string2 echo "$string is the concatenation of $string1 and $string2."
The following program outputs the string “HelloWorld is the concatenation of Hello and World.”.
bash/concatenating_strings.1594805433.txt.gz · Last modified: 2020/07/15 09:30 by 127.0.0.1