In PHP I would add strings together like this:
$foo = "Hello";
$foo .= " World";
So $foo would be "Hello World"
How would I do that in Bash?
|
In PHP I would add strings together like this:
So How would I do that in Bash? |
||||
|
|
In general to concatenate two variables you can just write them one after another:
|
|||||||||||||||||
|
|
Bash also supports a += operator as shown in the following transcript:
|
|||||||||
|
|
You can do this too:
|
|||
|
|
Edit: Thanks Dennis |
|||||||||
|
|
Yet another approach...
...and yet yet another one.
|
|||
|
|
|
If what you are trying to do is to split a string into several lines, you can use a backslash:
With one space in between:
This one also adds only one space in between:
|
|||
|
|
|
You can concatenate without the quotes, here is an example:
This last statement would print "OpenSystems" (without quotes) This is an example of a bash script:
|
|||||
|