How to concatenate string variables in Bash
In PHP, strings are concatenated together as follows:
$foo = "Hello";
$foo .= " World";
Here, $foo
becomes "Hello World".
How is this accomplished in Bash?
In PHP, strings are concatenated together as follows:
$foo = "Hello";
$foo .= " World";
Here, $foo
becomes "Hello World".
How is this accomplished in Bash?