summaryrefslogtreecommitdiff
path: root/series-ping.py
blob: 077c5ef810eff5b5b3746266c59511363aeda549 (plain)
1
2
3
4
5
import commands
for i in range(100):
    value = commands.getoutput('python get_ping_rate.py')
    print "Step", i, "...", value
    commands.getoutput('echo %s\t%s >> series.log' % (i, value))