String concatenation

 
#! bin/bash
# String concatenation

echo "enter the 1st string"
read st1
echo "enter the 2nd string"
read st2

c=$st1$st2

echo "concatination of 2 strings is :$c"



[prabhucloudxlab@cxln4 ~]$ sh hello.sh
enter the 1st string
hari
enter the 2nd string
taraka
concatination of 2 strings is :haritaraka