shell 字符串拼接

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 字符串拼接相关的知识,希望对你有一定的参考价值。

 

test.sh

#!/bin/bash
your_name="runoob"
# 使用双引号拼接
greeting="hello, "$your_name" !"
greeting_1="hello, $your_name !"
echo $greeting  $greeting_1
# 使用单引号拼接
greeting_2=hello, $your_name !
greeting_3=hello, $your_name !
echo $greeting_2  $greeting_3

输出

bogon:Desktop macname$ ./test.sh 
hello, runoob ! hello, runoob !
hello, runoob ! hello, $your_name !

 

以上是关于shell 字符串拼接的主要内容,如果未能解决你的问题,请参考以下文章

[100 tips about shell] shell中变量拼接输出字符串单引号双引号

Shell字符串拼接(连接合并)

shell 字符串拼接

shell echo 字符串拼接变量

shell--字符串拼接

怎样在Oracle中拼接字符串?