标签:logs nbsp 显示 内容 分割 pre class log color
##将IP分割并存入arr数组
shell>IP="192.168.2.1"
shell>arr=($(echo $IP | awk -F. ‘{print $1,$2,$3,$4,$1"."$2"."$3}‘))
##显示数组长度
shell>echo ${#arr[@]}
##显示数组的全部内容
shell>echo ${arr[@]}
##显示数组某下标内容
shell>echo ${arr[0]}
标签:logs nbsp 显示 内容 分割 pre class log color
原文地址:http://www.cnblogs.com/g120992880/p/6727306.html