我需要有关python脚本的一些帮助。我需要在dhcpd文件中搜索主机整体,其MAC和IP,并将其打印在一行中。我能够找到主机名和IP地址,但无法弄清楚如何将if语句中的变量放入一行中。任何建议,代码如下:
#!/usr/bin/python
import sys
import re
#check for arguments
if len(sys.argv) > 1:
print "usage: no arguments required"
sys.exit()
else:
dhcp_file = open("/etc/dhcp/dhcpd.conf","r")
for line in dhcp_file:
if re.search(r'\bhost\b',line):
split = re.split(r'\s+', line)
print split[1]
if re.search(r'\bhardware ethernet\b',line):
ip = re.split(r'\s+',line)
print ip[2]
dhcp_file.close()
慕尼黑8549860
斯蒂芬大帝
相关分类