我像这样运行 iperf 命令:
iperf -c 10.0.0.1 -t 2 -f m -w 1K | grep -Po '[0-9.]*(?= Mbits/sec)'
我只想显示吞吐量,例如 0.32 但是因为我在这里使用 1K,所以出现警告并且显示变为
WARNING: TCP window size set to 1024 bytes. A small window size will give poor performance. See the Iperf documentation.
0.32
如何删除此警告,以便我只能获得“0.32”?