标签:color div bash route ash udf cloud bin 自动
#!/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 $2 $(echo "$s"|cut -d ‘.‘ -f 2-) -n $(echo "$s"|cut -d ‘.‘ -f 1)
done
shell 自动获取和map应用实例url 【cloudfoundry实例】
标签:color div bash route ash udf cloud bin 自动
原文地址:http://www.cnblogs.com/songfucai/p/7835092.html