shell中,可以字符串相加吗?

来源:互联网 发布:chroot 搭建linux系统 编辑:程序博客网 时间:2024/05/01 06:16
#!/bin/sh 
str1="asdfasdf" 
str2="123"
str3=$str1$str2 
echo   $str3