Concatenate two strings in shell script? - Shell Scripting Views : 550
Tagged in : Shell Scripting
0 0
Send mail
Concatenate two values using shell script
Use the below code to concate two strings.
Example
var='abc'
var="${var}def"
echo $var

Output
abcdef
By Nirmala, On - 2010-01-25



    Login to add Comments .