|
|
Concatenate two strings in shell script? - Shell Scripting
|
Views : 550
|
|
Tagged in : Shell Scripting
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|