wlan-graphs
来自「柯老师网站上找到的」· 代码 · 共 29 行
TXT
29 行
#!/bin/tcsh#if ( $#argv < 1 ) then echo usage: echo " " $0 \<scenario\> \[\<flow name\> = Flow_id\] ... exit 1endifset scenario = $1shiftset latfile = $scenario.lat.gnuplotset bwfile = $scenario.bw.gnuplotset latdistfile = $scenario.latdist.gnuplotrm -f $latfile $bwfile $latdistfile# if a title file doesn't existtouch $scenario.titleegrep "^Flow|^Latency Max|^Latency Mean|^Latency Std Dev" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario lat $* > $latfilegnuplot $latfileegrep "^Flow|^No|^Total B|^Max B" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario bw $* > $bwfilegnuplot $bwfileegrep "^Flow" $scenario.stats | awk '{print $NF;}' | wlan-gnuscript $scenario latdist $* > $latdistfilegnuplot $latdistfile
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?