当前位置: 技术问答>linux和unix
bash脚本
来源: 互联网 发布时间:2017-01-31
本文导语: local relative_path=${current_src:14:len}其中的 ${current_src:14:len}是什么意思呢。(摘自:http://hi.baidu.com/wylhistory/blog/item/f0a920361d1788340b55a951.html) | 这是bash对变量的处理 (5) ${value:offset} ${value:offset:lengt...
local relative_path=${current_src:14:len}其中的
${current_src:14:len}是什么意思呢。(摘自:http://hi.baidu.com/wylhistory/blog/item/f0a920361d1788340b55a951.html)
${current_src:14:len}是什么意思呢。(摘自:http://hi.baidu.com/wylhistory/blog/item/f0a920361d1788340b55a951.html)
|
这是bash对变量的处理
(5) ${value:offset}
${value:offset:length}
从变量中提取子串,这里offset和length可以是算术表达式.
参考bash变量分析_涸泉之鱼
(5) ${value:offset}
${value:offset:length}
从变量中提取子串,这里offset和length可以是算术表达式.
参考bash变量分析_涸泉之鱼
|
从current_src的第十四个字符开始,截取len个字符。