blob: 7cb37990119fd146415257edaf085177a781795b [file] [log] [blame]
#!/usr/bin/env ruby
while line = STDIN.gets
case line.chomp!
when /^\s*\d+\.\d+ MB \/\s+\d+\.\d+ sec =\s+(\d+\.\d+) Mbps/
puts 'throughput_Mbps: ' + $1
end
end