码迷,mamicode.com
首页 > 其他好文 > 详细

awk

时间:2017-04-18 14:06:15      阅读:98      评论:0      收藏:0      [点我收藏+]

标签: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]}

 

awk

标签:logs   nbsp   显示   内容   分割   pre   class   log   color   

原文地址:http://www.cnblogs.com/g120992880/p/6727306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!