问题就在标题中,最好的办法是从 /sys 中的某个文件获取,而不是解析 iwlist 的输出?
我需要 iwconfig 输出中的这个数字“Bit Rate=54Mb/s”。
谢谢
答案1
我想这应该可以。
iwconfig wlan0 | grep Bit | awk '{print $2}' | sed 's/Rate=//'
这将返回数据速率。
问题就在标题中,最好的办法是从 /sys 中的某个文件获取,而不是解析 iwlist 的输出?
我需要 iwconfig 输出中的这个数字“Bit Rate=54Mb/s”。
谢谢
我想这应该可以。
iwconfig wlan0 | grep Bit | awk '{print $2}' | sed 's/Rate=//'
这将返回数据速率。