- 论坛徽章:
- 14
|
- awk '/^Nmap/{gsub(/\(|\)/,"",$NF);ip=$NF}/^Host/{gsub(/\(/,"",$(NF-1));printf("%s %s\n",ip,$(NF-1))}'
- py练习:
- #!/usr/bin/env python
- import re
- iplist=[]
- tlist=[]
- with open('5') as f:
- for lines in f:
- if lines.startswith('Nmap'):
- l=lines.strip().split()
- ip=re.sub('[\(|\)]',"",l[-1])
- iplist.append(ip)
- if lines.startswith('Host'):
- l=lines.strip().split()
- t=re.sub('[\(|\)]',"",l[-2])
- tlist.append(t)
- for i in xrange(0,len(iplist)):
- print "%s %s" %(iplist[i],tlist[i])
- 结果:
- 64.233.160.17 0.23s
- 64.233.160.18 0.24s
- 173.194.40.112 0.34s
- 173.194.40.121 0.32s
复制代码 |
|