Answers for "add strings with + bash"

18

combine strings bash

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

Concatenating Strings in Bash

Var_start=“https.//www.”
Var_end=“.com”
echo $Var_start$1$Var_end
Posted by: Guest on April-10-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language