Java充电社
专辑
博文
联系我
本人继续续收门徒,亲手指导
Shell专题
-> Shell字符串拼接(连接、合并)
1、Shell概述
2、Shell脚本入门
3、变量
4、Shell字符串拼接(连接、合并)
5、运算符:$(())或$[]
6、条件判断
7、流程控制(重点)(if/case/for/while)
8、read读取控制台输入
9、函数
10、$(cmd)和`cmd`:命令替换
11、正则表达式入门
12、cut命令:文本处理
13、awk命令:文本处理
14、shell综合案例
上一篇:变量
下一篇:运算符:$(())或$[]
<div style="display:none"></div> 创建str.sh,内容如下: ```shell #!/bin/bash name="articles" url="http://itsoku.com" str1=$name$url #中间不能有空格 str2="$name $url" #如果被双引号包围,那么中间可以有空格 str3=$name": "$url #中间可以出现别的字符串 str4="$name: $url" #这样写也可以 str5="${name}: ${url}/articles" #这个时候需要给变量名加上大括号 str6='${name}: ${url}/articles' #单引号括包裹起来的不会被替换 echo $str1 echo $str2 echo $str3 echo $str4 echo $str5 echo $str6 ``` 运行输出 ```shell [root@test001 shells]# chmod +x str.sh [root@test001 shells]# ./str.sh articleshttp://itsoku.com articles http://itsoku.com articles: http://itsoku.com articles: http://itsoku.com articles: http://itsoku.com/articles ${name}: ${url}/articles ``` <a style="display:none" target="_blank" href="https://mp.weixin.qq.com/s/_S1DD2JADnXvpexxaBwLLg" style="color:red; font-size:20px; font-weight:bold">继续收门徒,亲手带,月薪 4W 以下的可以来找我</a> ## 最新资料 1. <a href="https://mp.weixin.qq.com/s?__biz=MzkzOTI3Nzc0Mg==&mid=2247484964&idx=2&sn=c81bce2f26015ee0f9632ddc6c67df03&scene=21#wechat_redirect" target="_blank">尚硅谷 Java 学科全套教程(总 207.77GB)</a> 2. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484192&idx=1&sn=505f2faaa4cc911f553850667749bcbb&scene=21#wechat_redirect" target="_blank">2021 最新版 Java 微服务学习线路图 + 视频</a> 3. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484573&idx=1&sn=7f3d83892186c16c57bc0b99f03f1ffd&scene=21#wechat_redirect" target="_blank">阿里技术大佬整理的《Spring 学习笔记.pdf》</a> 4. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247484544&idx=2&sn=c1dfe907cfaa5b9ae8e66fc247ccbe84&scene=21#wechat_redirect" target="_blank">阿里大佬的《MySQL 学习笔记高清.pdf》</a> 5. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247485167&idx=1&sn=48d75c8e93e748235a3547f34921dfb7&scene=21#wechat_redirect" target="_blank">2021 版 java 高并发常见面试题汇总.pdf</a> 6. <a href="https://mp.weixin.qq.com/s?__biz=MzkwOTAyMTY2NA==&mid=2247485664&idx=1&sn=435f9f515a8f881642820d7790ad20ce&scene=21#wechat_redirect" target="_blank">Idea 快捷键大全.pdf</a> ![](https://itsoku.oss-cn-hangzhou.aliyuncs.com/itsoku/blog/article/1/2883e86e-3eff-404a-8943-0066e5e2b454.png)
#custom-toc-container