记录一下,今天在写shell 脚本时,需要获取mongodb connection 的值,由于前缀都是相同的(t_instance_),所以取值从第11个字符(序列从零开始)开始,获取方式如下:${connection:11}
connection=t_instance_LOG
shortConnection=${connection:11}
echo ${shortConnection} # 输出 LOG