摘要: #!/bin/bash#a="one,two,three,four"a=$(cf a|grep started |grep $1|tr -s ' '|cut -d ' ' -f 6-|cut -d ',' -f 1-)OLD_IFS="$IFS"IFS=","arr=($a)IFS="$OLD_IFS"for s in ${arr[@]}do echo "$s"cf map-route $... 阅读全文
posted @ 2017-11-14 22:23 老农夫 阅读(297) 评论(0) 推荐(0) 编辑