close
[root@192 ~]# cat ./test
#! /bin/bash
A="a b c d"
B="c d e f"
C=${A}"---"${B}
echo "$C"
輸出結果:
[root@192 ~]# ./test
a b c d---c d e f
文章標籤
全站熱搜
[root@192 ~]# cat ./test
#! /bin/bash
A="a b c d"
B="c d e f"
C=${A}"---"${B}
echo "$C"
輸出結果:
[root@192 ~]# ./test
a b c d---c d e f
留言列表