红联Linux门户
Linux帮助

利用python数组解析ifconfig命令输出

发布时间:2016-07-31 09:42:43来源:linux网站作者:六个九十度
有时候我们需要对命令的格式化输出进行解析,解析通常依赖命令自身的格式化特征,不过这些特征都有共性:各种层面的循环列表结构。
比如ifconfig命令,首先循环列出所有网络接口,然后在网络接口内,在循环列出各个预定义字段。
所以对该命令解析时,首先要按list之list的结构对其输出内容进行组织,这里用python的(多维)数组是个不错的主意。
 
#encoding=utf-8  
import subprocess  
tmp_file = open('/tmp/g.log','w')  
subprocess.call(['ifconfig'], stdout=tmp_file)  
tmp_file = open('/tmp/g.log','r')  
ifaces = []  
ifaces.append([]) #向数组的尾端添加一个数组!  
ifaces_cnt = 0  
line_num = 0  
for line_raw in tmp_file:  
line = line_raw.rstrip() #空行的长度为1,strip后长度才为0  
if len(line) > 0:  
ifaces[ifaces_cnt].append(line) #向数组的尾端添加一个字符串!  
else:  
ifaces_cnt = ifaces_cnt +1  
ifaces.append([])  
print 'there are %d section'%len(ifaces)  
for face in ifaces:  
print '========'  
for l in face:  
print l  
 
运行输出效果:
there are 3 section  
========  
eth1  Link encap:以太网  硬件地址 00:1c:25:dd:44:8b  
    inet 地址:192.168.0.105  广播:192.168.0.255  掩码:255.255.255.0  
    inet6 地址: fe80::21c:25ff:fedd:448b/64 Scope:Link  
    UP BROADCAST RUNNING MULTICAST  MTU:1500  跃点数:1  
    接收数据包:569916 错误:0 丢弃:0 过载:0 帧数:0  
    发送数据包:389975 错误:0 丢弃:0 过载:0 载波:0  
    碰撞:0 发送队列长度:1000  
    接收字节:651139742 (651.1 MB)  发送字节:37622845 (37.6 MB)  
    中断:17  
========  
lo  Link encap:本地环回  
   inet 地址:127.0.0.1  掩码:255.0.0.0  
   inet6 地址: ::1/128 Scope:Host  
   UP LOOPBACK RUNNING  MTU:65536  跃点数:1  
   接收数据包:17094 错误:0 丢弃:0 过载:0 帧数:0  
   发送数据包:17094 错误:0 丢弃:0 过载:0 载波:0  
   碰撞:0 发送队列长度:0  
   接收字节:1578445 (1.5 MB)  发送字节:1578445 (1.5 MB)  
========  
 
多出来的1个section是边界效应,请忽视。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22868.html