码迷,mamicode.com
首页 > 系统相关 > 详细

shell 字符串拼接

时间:2019-08-24 00:19:23      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:shel   name   tin   cname   shell 字符串   gre   bin   oob   字符串   

 

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 字符串拼接

标签:shel   name   tin   cname   shell 字符串   gre   bin   oob   字符串   

原文地址:https://www.cnblogs.com/sea-stream/p/11403094.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!