首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > 其他服务器 >

bash脚本解决方法

2013-01-05 
bash脚本local relative_path${current_src:14:len}其中的${current_src:14:len}是什么意思呢。(摘自:http

bash脚本
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:length} 
从变量中提取子串,这里offset和length可以是算术表达式. 


参考bash变量分析_涸泉之鱼
[解决办法]
从current_src的第十四个字符开始,截取len个字符。

热点排行