Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

8 Answers

up vote 237 down vote accepted
foo="Hello"
foo="$foo World"
echo $foo
> Hello World

In general to concatenate two variables you can just write them one after another:

a='hello'
b='world'
c=$a$b
echo $c
> helloworld
share|improve this answer
33  
Probably good to get in the habit of putting $foo inside the double quotes, for the times when it really does matter. – Jefromi Nov 15 '10 at 7:56
13  
We're taught to always do that because when substitution takes place, spaces will be ignored by the shell, but double quotes will always protect those spaces. – Strawberry Nov 16 '10 at 4:37
2  
Seems new to me. but this works. +1. – Neilvert Noval Jun 25 '12 at 2:18
4  
Might be better to not use dollar for the prompt if you're demonstrating variable use. – KomodoDave Sep 17 '12 at 7:43

Bash also supports a += operator as shown in the following transcript:

$ A="X Y"
$ A+="Z"
$ echo "$A"
X YZ
share|improve this answer
32  
bash plus equals, adding this for SEO – Steven Penny Feb 22 '12 at 2:28
4  
This is much better than the accepted answer, thanks! Added "append" as a tag to make this question easier to find. – noamtm Jul 15 '12 at 8:28

You can do this too:

$ var="myscript"

$ echo $var

myscript


$ var=${var}.sh

$ echo $var

myscript.sh
share|improve this answer
$ a=hip
$ b=hop
$ ab=$a$b
$ echo $ab
hiphop
$ echo $a$b
hiphop
share|improve this answer
foo="Hello "
foo="$foo World"

Edit: Thanks Dennis

share|improve this answer
27  
The space after the equal sign won't work. – Dennis Williamson Nov 15 '10 at 15:54
1  
This is the most useful answer for shell scripting. I have found myself the last 30 minutes because I had a space before and after the equal sign!! – Stefan Feb 21 at 10:25

Yet another approach...

> H="Hello "
> U="$H""universe."
> echo $U
Hello universe.

...and yet yet another one.

> H="Hello "
> U=$H"universe."
> echo $U
Hello universe.
share|improve this answer

If what you are trying to do is to split a string into several lines, you can use a backslash:

$ a="hello\
> world"
$ echo $a
helloworld

With one space in between:

$ a="hello \
> world"
$ echo $a
hello world

This one also adds only one space in between:

$ a="hello \
>      world"
$ echo $a
hello world
share|improve this answer
I'm afraid this is not what was meant – Installero Jan 25 at 15:13

You can concatenate without the quotes, here is an example:

$Variable1 Open
$Variable2 Systems
$Variable3 $Variable1$Variable2
$echo $Variable3

This last statement would print "OpenSystems" (without quotes)

This is an example of a bash script:

v1=hello
v2=world
v3="$v1       $v2"
echo $v3            # output: hello world
echo "$v3"          # output: hello       world
share|improve this answer
Bash? But it says "ksh"! (I know they have some compatibility.) What is the first set of lines supposed to be? There are no assignment operators. Also, please use code formatting (click the little 010101 button). – Dennis Williamson Nov 15 '10 at 16:00
You are right, I should have written a more simple and typical example. So I took your advice and I did it. I also took your advice on the source code formating, I did not knew it, thanks a lot for teaching me that. – mariana soffer Nov 16 '10 at 0:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.