?? wlan-latdist
字號:
#!/bin/tcsh## works on a latency file produced by wlan-lat# outputs cummulative % of packets below increasing# latency thresholdsif ( $#argv != 2 ) then echo usage: echo " " $0 \<scenario\> \<flow id\> exit 1endifset scenario = $1set flow = $2set latfile = $scenario.$flow.latset distfile = $scenario.$flow.latdistrm -f $distfileset total = `wc -l $latfile | gawk '{ print $1; }'`gawk '{ print $2; }' $latfile | sort -g | gawk -v total=$total '{ print $1, (++i)*100.0/total; }' > $distfile
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -