我想知道如何在 iperf 中只显示带宽值。我使用 grep 但它显示整行是这样的:
iperf -c 10.0.0.1 -i 1 -t 100 | grep -i --color Mbit/sec
结果是
[3] 0.0 - 1.0 sec 128 Kbytes 1.05 Mbits/sec
[3] 1.0 - 2.0 sec 128 Kbytes 11.5 Mbits/sec
[3] 2.0 - 3.0 sec 128 Kbytes 31.5 Mbits/sec
我想要的是
1.05
11.5
31.5
我听说过 awk,但我不知道如何在这个问题中使用。谁能告诉如何使用它?