Denwerko Asked: 2011-05-03 08:04:16 +0800 CST2011-05-03 08:04:16 +0800 CST 2011-05-03 08:04:16 +0800 CST 如何从 cli 获取 wlan0 速率 772 问题在标题中,最好来自 /sys 中的某个文件,而不是解析 iwlist 的输出? 我需要 iwconfig "Bit Rate= 54 Mb/s"的输出中的这个数字。 谢谢 network-monitoring 1 个回答 Voted Best Answer Alex 2011-05-03T08:16:16+08:002011-05-03T08:16:16+08:00 我想这会做到。 iwconfig wlan0 | grep Bit | awk '{print $2}' | sed 's/Rate=//' 这将返回数据速率。
我想这会做到。
这将返回数据速率。