0

我像这样运行 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”?

4

1 回答 1

1

只需将警告消息发送到/dev/null,之后您只会得到输出。

所以你的命令是,

iperf -c 10.0.0.1 -t 2 -f m -w 1K 2> /dev/null | grep -Po '[0-9.]*(?= Mbits/sec)'
于 2014-06-25T04:46:25.890 回答