In PHP, strings are concatenated together as follows:
$foo = \"Hello\"; $foo .= \" World\";
Here, $foo becomes \"Hello World\"
$foo
I kind of like making a quick function.
#! /bin/sh -f function combo() { echo $@ } echo $(combo 'foo''bar')
Yet another way to skin a cat. This time with functions :D