${varible##*string} //从左向右截取最后一个string后的字符串 ${varible#*string} //从左向右截取第一个string后的字符串 ${varible%%string*} //从右向左截取最后一个string后的字符串 ${varible%string*} //从右向左截取第一个string后的字符串
shell脚本技巧记录,布布扣,bubuko.com
shell脚本技巧记录
原文:http://www.cnblogs.com/weixliu/p/3653649.html