proof-of-concept-helper.py from EmStar at Krugle
Show proof-of-concept-helper.py syntax highlighted
#!/usr/bin/python
import sys
readnext=0
woken="-1"
for line in sys.stdin:
if readnext == 1:
s = line.split()
woken = s[3]
readnext = 0
if line.startswith(" Src Dst"):
readnext = 1
print woken,
See more files for this project here