Shell 中截取字符串的方式也有很多种。
1 | $ str=https://wxnacy.com/2020/01/13/shell-substr |
从索引处开始截取
1 | $ echo ${str:6} |
截取指定长度
1 | $ echo ${str:6:8} |
从右边索引处开始截取
1 | $ echo ${str:0-6} |
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章